Skip to content

Commit 9977cc3

Browse files
committed
Fix possible quick switch empty results issue
1 parent b6115fa commit 9977cc3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/ViewModel/MainViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1510,7 +1510,7 @@ await PluginManager.QueryHomeForPluginAsync(plugin, query, token) :
15101510
IReadOnlyList<Result> resultsCopy;
15111511
if (results == null)
15121512
{
1513-
resultsCopy = _emptyResult;
1513+
resultsCopy = currentIsQuickSwitch ? _emptyQuickSwitchResult : _emptyResult;
15141514
}
15151515
else
15161516
{

0 commit comments

Comments
 (0)