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 756e718 commit 0720779Copy full SHA for 0720779
Flow.Launcher/Storage/TopMostRecord.cs
@@ -18,7 +18,7 @@ internal bool IsTopMost(Result result)
18
}
19
20
// since this dictionary should be very small (or empty) going over it should be pretty fast.
21
- return records[result.OriginQuery.RawQuery].Equals(result);
+ return result.OriginQuery != null && records[result.OriginQuery.RawQuery].Equals(result);
22
23
24
internal void Remove(Result result)
0 commit comments