From b3594dd147c53656d83bd44d1a9371d086399602 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Mon, 14 Nov 2022 23:32:22 +0100 Subject: [PATCH] remove invalid naming of settings again ive added this in what can only be described as complete delirium, as it makes no sense whatsoever. reverted. --- include/Common.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/Common.h b/include/Common.h index 3a915b0..b68e1a2 100644 --- a/include/Common.h +++ b/include/Common.h @@ -52,18 +52,18 @@ constexpr std::string_view StrAuthKey = "AuthKey"; constexpr std::string_view StrLogChat = "LogChat"; // Misc -constexpr std::string_view StrSendErrors = "Misc.SendErrors"; -constexpr std::string_view StrSendErrorsMessageEnabled = "Misc.SendErrorsShowMessage"; -constexpr std::string_view StrHideUpdateMessages = "Misc.ImScaredOfUpdates"; -constexpr std::string_view StrIncludeSubdirectories = "Misc.IncludeSubdirectories"; +constexpr std::string_view StrSendErrors = "SendErrors"; +constexpr std::string_view StrSendErrorsMessageEnabled = "SendErrorsShowMessage"; +constexpr std::string_view StrHideUpdateMessages = "ImScaredOfUpdates"; +constexpr std::string_view StrIncludeSubdirectories = "IncludeSubdirectories"; // HTTP -constexpr std::string_view StrHTTPServerEnabled = "HTTP.HTTPServerEnabled"; -constexpr std::string_view StrHTTPServerUseSSL = "HTTP.UseSSL"; -constexpr std::string_view StrSSLKeyPath = "HTTP.SSLKeyPath"; -constexpr std::string_view StrSSLCertPath = "HTTP.SSLCertPath"; -constexpr std::string_view StrHTTPServerPort = "HTTP.HTTPServerPort"; -constexpr std::string_view StrHTTPServerIP = "HTTP.HTTPServerIP"; +constexpr std::string_view StrHTTPServerEnabled = "HTTPServerEnabled"; +constexpr std::string_view StrHTTPServerUseSSL = "UseSSL"; +constexpr std::string_view StrSSLKeyPath = "SSLKeyPath"; +constexpr std::string_view StrSSLCertPath = "SSLCertPath"; +constexpr std::string_view StrHTTPServerPort = "HTTPServerPort"; +constexpr std::string_view StrHTTPServerIP = "HTTPServerIP"; // Unused constexpr std::string_view StrCustomIP = "Unused.CustomIP";