From 773bc116c8f9d632dbf98fa129303624389c16ce Mon Sep 17 00:00:00 2001 From: Dario Date: Tue, 12 May 2020 10:51:49 +0200 Subject: [PATCH] fix missing namespace --- src/cpp/model/Session.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cpp/model/Session.cpp b/src/cpp/model/Session.cpp index 8bb5e0852..4f4714016 100644 --- a/src/cpp/model/Session.cpp +++ b/src/cpp/model/Session.cpp @@ -862,8 +862,8 @@ Poco::Net::HTTPCookie Session::getLoginCookie() keks.setPath("/"); // send cookie only via https, on linux, except in test builds #ifndef WIN32 - if (SERVER_TYPE_PRODUCTION == ServerConfig::g_ServerSetupType || - SERVER_TYPE_STAGING == ServerConfig::g_ServerSetupType) { + if (ServerConfig::SERVER_TYPE_PRODUCTION == ServerConfig::g_ServerSetupType || + ServerConfig::SERVER_TYPE_STAGING == ServerConfig::g_ServerSetupType) { keks.setSecure(true); } #endif