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 e7c4d83 commit d4b5a19Copy full SHA for d4b5a19
Plugins/Flow.Launcher.Plugin.Everything
@@ -0,0 +1 @@
1
+Subproject commit 6d5b687e240a6abdc5623d8a8e09501f3994b0d3
Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs
@@ -235,7 +235,8 @@ private static Win32 ExeProgram(string path)
235
{
236
var program = Win32Program(path);
237
var info = FileVersionInfo.GetVersionInfo(path);
238
- program.Description = info.FileDescription;
+ if (!string.IsNullOrEmpty(info.FileDescription))
239
+ program.Description = info.FileDescription;
240
return program;
241
}
242
catch (Exception e) when (e is SecurityException || e is UnauthorizedAccessException)
0 commit comments