From c8ca4564a1c5c8f1b8cb53ac0b4be6337109f439 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Fri, 11 Nov 2022 19:39:08 +0100 Subject: [PATCH] fix error which complains about AuthKey not being present before reading the config file --- src/Common.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Common.cpp b/src/Common.cpp index 10272ef..6737f2e 100644 --- a/src/Common.cpp +++ b/src/Common.cpp @@ -34,6 +34,7 @@ Application::SettingsMap Application::mSettings = { { StrHTTPServerIP, std::string("127.0.0.1") }, { StrHTTPServerUseSSL, false }, { StrHideUpdateMessages, false }, + { StrAuthKey, std::string("") }, }; // global, yes, this is ugly, no, it cant be done another way