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 6333cd3 commit 5f2921cCopy full SHA for 5f2921c
Flow.Launcher/ViewModel/MainViewModel.cs
@@ -212,6 +212,12 @@ async Task UpdateActionAsync()
212
await Task.Delay(20);
213
while (channelReader.TryRead(out var item))
214
{
215
+ if (item.Token.IsCancellationRequested && item.shouldClearExistingResults)
216
+ {
217
+ App.API.LogDebug(ClassName, "BLAH- Token cancelled but results marked to clear");
218
+ Results.Clear();
219
+ }
220
+
221
if (!item.Token.IsCancellationRequested)
222
queue[item.ID] = item;
223
}
0 commit comments