mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix a crash issue.
This commit is contained in:
parent
50f6044a2f
commit
61dc148d34
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ namespace Wox.ImageLoader
|
|||
{
|
||||
img = new BitmapImage(new Uri(path));
|
||||
}
|
||||
else if (selfExts.Contains(ext))
|
||||
else if (selfExts.Contains(ext) && File.Exists(path))
|
||||
{
|
||||
img = GetIcon(path);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue