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 4ddb164 commit 657e6aeCopy full SHA for 657e6ae
1 file changed
Flow.Launcher/Storage/QueryHistory.cs
@@ -77,8 +77,8 @@ public void Add(Result result)
77
if (existingHistoryItem.IcoPath != result.IcoPath)
78
existingHistoryItem.IcoPath = result.IcoPath;
79
80
- if (existingHistoryItem.Glyph.Glyph != result.Glyph.Glyph
81
- || existingHistoryItem.Glyph.FontFamily != result.Glyph.FontFamily)
+ if (existingHistoryItem.Glyph?.Glyph != result.Glyph?.Glyph
+ || existingHistoryItem.Glyph?.FontFamily != result.Glyph?.FontFamily)
82
existingHistoryItem.Glyph = result.Glyph;
83
}
84
else
0 commit comments