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 568dced commit c8dfd56Copy full SHA for c8dfd56
Plugins/Flow.Launcher.Plugin.Program/Programs/Win32.cs
@@ -302,6 +302,10 @@ private static Win32 UrlProgram(string path)
302
var data = parser.ReadFile(path);
303
var urlSection = data["InternetShortcut"];
304
var url = urlSection?["URL"];
305
+ if (String.IsNullOrEmpty(url))
306
+ {
307
+ return program;
308
+ }
309
foreach(var protocol in Main._settings.GetProtocols())
310
{
311
if(url.StartsWith(protocol))
0 commit comments