From a412c7978a5b15d0f9f086f4496179c7eff3bfab Mon Sep 17 00:00:00 2001 From: Jack Ye Date: Fri, 10 Oct 2025 12:23:41 +0800 Subject: [PATCH] Fix format Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Plugins/Flow.Launcher.Plugin.Url/Main.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Url/Main.cs b/Plugins/Flow.Launcher.Plugin.Url/Main.cs index fd2da2a6d..ec02f8dd2 100644 --- a/Plugins/Flow.Launcher.Plugin.Url/Main.cs +++ b/Plugins/Flow.Launcher.Plugin.Url/Main.cs @@ -83,7 +83,7 @@ namespace Flow.Launcher.Plugin.Url private string GetHttpPreference() { - return _settings.AlwaysOpenWithHttps ? "https": "http"; + return _settings.AlwaysOpenWithHttps ? "https" : "http"; } public bool IsURL(string raw)