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 {");