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 be630f1 commit e9a68d2Copy full SHA for e9a68d2
1 file changed
Plugins/Flow.Launcher.Plugin.Url/Main.cs
@@ -115,7 +115,9 @@ private static string GetHttpPreference()
115
116
public bool IsURL(string raw)
117
{
118
- if (UrlRegex.Match(raw.ToLower()).Value == raw) return true;
+ raw = raw.ToLower();
119
+
120
+ if (UrlRegex.Match(raw).Value == raw) return true;
121
122
return false;
123
}
0 commit comments