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 a3451e5 commit fb62dcbCopy full SHA for fb62dcb
src/Files.App/ViewModels/Properties/CustomizationViewModel.cs
@@ -88,9 +88,10 @@ await App.Window.DispatcherQueue.EnqueueAsync(() =>
88
public void LoadIconsForPath(string path)
89
{
90
IconResourceItemPath = path;
91
+ _dllIcons.Clear();
92
93
var icons = Win32API.ExtractIconsFromDLL(path);
- if (icons.Count == 0)
94
+ if (icons?.Count is null or 0)
95
return;
96
97
foreach(var item in icons)
0 commit comments