We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334a27f commit 1d1909cCopy full SHA for 1d1909c
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -1564,7 +1564,10 @@ protected virtual void Dispose(bool disposing)
1564
{
1565
_updateSource?.Dispose();
1566
_resultsUpdateChannelWriter?.Complete();
1567
- _resultsViewUpdateTask?.Dispose();
+ if (_resultsViewUpdateTask?.IsCompleted == true)
1568
+ {
1569
+ _resultsViewUpdateTask.Dispose();
1570
+ }
1571
_disposed = true;
1572
}
1573
0 commit comments