Skip to content

Commit f5cc792

Browse files
Return empty when operation canceled
1 parent b739bb4 commit f5cc792

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/Search/SearchManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ when ActionKeywordMatch(query, Settings.ActionKeyword.IndexSearchActionKeyword)
111111
}
112112
catch (OperationCanceledException)
113113
{
114-
return results.ToList();
114+
return new List<Result>();
115115
}
116116
catch (EngineNotAvailableException)
117117
{

0 commit comments

Comments
 (0)