From f4d1094c571a5d71581393e10f16345a314685fd Mon Sep 17 00:00:00 2001 From: whimsical-c4lic0 Date: Fri, 2 Jan 2026 14:22:46 -0600 Subject: [PATCH] Remove the quotes around the boolean DisableBrowserAuth config option --- OF DL/Program.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/OF DL/Program.cs b/OF DL/Program.cs index a72f176..ae0e740 100644 --- a/OF DL/Program.cs +++ b/OF DL/Program.cs @@ -133,7 +133,7 @@ public class Program var hoconConfig = new StringBuilder(); hoconConfig.AppendLine("# Auth"); hoconConfig.AppendLine("Auth {"); - hoconConfig.AppendLine($" DisableBrowserAuth = \"{jsonConfig.DisableBrowserAuth.ToString().ToLower()}\""); + hoconConfig.AppendLine($" DisableBrowserAuth = {jsonConfig.DisableBrowserAuth.ToString().ToLower()}"); hoconConfig.AppendLine("}"); hoconConfig.AppendLine("# External Tools"); hoconConfig.AppendLine("External {"); @@ -380,7 +380,7 @@ public class Program var hoconConfig = new StringBuilder(); hoconConfig.AppendLine("# Auth"); hoconConfig.AppendLine("Auth {"); - hoconConfig.AppendLine($" DisableBrowserAuth = \"{jsonConfig.DisableBrowserAuth.ToString().ToLower()}\""); + hoconConfig.AppendLine($" DisableBrowserAuth = {jsonConfig.DisableBrowserAuth.ToString().ToLower()}"); hoconConfig.AppendLine("}"); hoconConfig.AppendLine("# External Tools"); hoconConfig.AppendLine("External {"); @@ -3071,7 +3071,7 @@ public class Program var hoconConfig = new StringBuilder(); hoconConfig.AppendLine("# Auth"); hoconConfig.AppendLine("Auth {"); - hoconConfig.AppendLine($" DisableBrowserAuth = \"{newConfig.DisableBrowserAuth.ToString().ToLower()}\""); + hoconConfig.AppendLine($" DisableBrowserAuth = {newConfig.DisableBrowserAuth.ToString().ToLower()}"); hoconConfig.AppendLine("}"); hoconConfig.AppendLine("# External Tools"); hoconConfig.AppendLine("External {"); @@ -3233,7 +3233,7 @@ public class Program var hoconConfig = new StringBuilder(); hoconConfig.AppendLine("# Auth"); hoconConfig.AppendLine("Auth {"); - hoconConfig.AppendLine($" DisableBrowserAuth = \"{newConfig.DisableBrowserAuth.ToString().ToLower()}\""); + hoconConfig.AppendLine($" DisableBrowserAuth = {newConfig.DisableBrowserAuth.ToString().ToLower()}"); hoconConfig.AppendLine("}"); hoconConfig.AppendLine("# External Tools"); hoconConfig.AppendLine("External {"); -- 2.43.0