Skip to content

Commit 893ec48

Browse files
committed
Remove unused check
1 parent 396cd69 commit 893ec48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Flow.Launcher/ViewModel/MainViewModel.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1260,7 +1260,7 @@ private async Task QueryResultsAsync(bool searchDelay, bool isReQuery = false, b
12601260
_ = Task.Delay(200, _updateSource.Token).ContinueWith(_ =>
12611261
{
12621262
// start the progress bar if query takes more than 200 ms and this is the current running query and it didn't finish yet
1263-
if (!_updateSource.Token.IsCancellationRequested && _isQueryRunning)
1263+
if (_isQueryRunning)
12641264
{
12651265
ProgressBarVisibility = Visibility.Visible;
12661266
}

0 commit comments

Comments
 (0)