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.
2 parents 99b35a3 + 12b2d65 commit c2e8147Copy full SHA for c2e8147
Plugins/Flow.Launcher.Plugin.Program/Programs/UWP.cs
@@ -565,7 +565,7 @@ private BitmapImage ImageFromPath(string path)
565
}
566
else
567
{
568
- ProgramLogger.LogException($"|UWP|ImageFromPath|{path}" +
+ ProgramLogger.LogException($"|UWP|ImageFromPath|{(string.IsNullOrEmpty(path) ? "Not Avaliable" : path)}" +
569
$"|Unable to get logo for {UserModelId} from {path} and" +
570
$" located in {Package.Location}", new FileNotFoundException());
571
return new BitmapImage(new Uri(Constant.MissingImgIcon));
0 commit comments