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 08bf147 commit 64e9150Copy full SHA for 64e9150
Plugins/Flow.Launcher.Plugin.Url/Main.cs
@@ -41,7 +41,7 @@ public class Main : IPlugin, IPluginI18n, ISettingProvider
41
// resource path
42
"(?:/\\S*)?" +
43
"$";
44
- Regex reg = new Regex(urlPattern, RegexOptions.Compiled | RegexOptions.IgnoreCase);
+ private readonly Regex UrlRegex = new(UrlPattern, RegexOptions.Compiled | RegexOptions.IgnoreCase);
45
internal static PluginInitContext Context { get; private set; }
46
internal static Settings Settings { get; private set; }
47
0 commit comments