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 a083528 commit 653dc83Copy full SHA for 653dc83
Flow.Launcher.Infrastructure/Image/ImageCache.cs
@@ -84,7 +84,7 @@ async void SliceExtra()
84
85
public bool ContainsKey(string key)
86
{
87
- return Data.ContainsKey(key) && Data[key].imageSource != null;
+ return key is not null && Data.ContainsKey(key) && Data[key].imageSource != null;
88
}
89
90
public int CacheSize()
0 commit comments