mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix match logic
This commit is contained in:
parent
be630f1ab5
commit
e9a68d2563
1 changed files with 3 additions and 1 deletions
|
|
@ -115,7 +115,9 @@ namespace Flow.Launcher.Plugin.Url
|
|||
|
||||
public bool IsURL(string raw)
|
||||
{
|
||||
if (UrlRegex.Match(raw.ToLower()).Value == raw) return true;
|
||||
raw = raw.ToLower();
|
||||
|
||||
if (UrlRegex.Match(raw).Value == raw) return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue