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 1a373e1 commit ae3559cCopy full SHA for ae3559c
Plugins/Flow.Launcher.Plugin.Url/Main.cs
@@ -59,7 +59,7 @@ public List<Result> Query(Query query)
59
Score = 8,
60
Action = _ =>
61
{
62
- if (!raw.ToLower().StartsWith(GetHttpPreference()))
+ if (!raw.StartsWith("http://", StringComparison.OrdinalIgnoreCase) && !raw.StartsWith("https://", StringComparison.OrdinalIgnoreCase))
63
64
raw = GetHttpPreference() + "://" + raw;
65
}
0 commit comments