diff --git a/src/Common.cpp b/src/Common.cpp index 6fc1ba1..9a3e924 100644 --- a/src/Common.cpp +++ b/src/Common.cpp @@ -35,6 +35,7 @@ Application::SettingsMap Application::mSettings = { { StrHTTPServerUseSSL, false }, { StrHideUpdateMessages, false }, { StrAuthKey, std::string("") }, + { StrIncludeSubdirectories, false }, }; // global, yes, this is ugly, no, it cant be done another way diff --git a/src/TConfig.cpp b/src/TConfig.cpp index eb8528f..7afd1ee 100644 --- a/src/TConfig.cpp +++ b/src/TConfig.cpp @@ -160,6 +160,7 @@ void TConfig::ParseFromFile(std::string_view name) { TryReadValue(data, "Misc", StrSendErrors); TryReadValue(data, "Misc", StrHideUpdateMessages); TryReadValue(data, "Misc", StrSendErrorsMessageEnabled); + TryReadValue(data, "Misc", StrIncludeSubdirectories); // HTTP TryReadValue(data, "HTTP", StrSSLKeyPath); TryReadValue(data, "HTTP", StrSSLCertPath);