aboutsummaryrefslogtreecommitdiff
path: root/zenserver
diff options
context:
space:
mode:
Diffstat (limited to 'zenserver')
-rw-r--r--zenserver/config.cpp2
-rw-r--r--zenserver/upstream/upstreamcache.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/zenserver/config.cpp b/zenserver/config.cpp
index 06b355b7a..c356b9f0b 100644
--- a/zenserver/config.cpp
+++ b/zenserver/config.cpp
@@ -235,7 +235,7 @@ ParseServiceConfig(const std::filesystem::path& DataRoot, ZenServiceConfig& Serv
throw std::exception("fatal zen global config script ({}) failure: {}"_format(ConfigScript, e.what()).c_str());
}
- ServiceConfig.MeshEnabled = lua["mesh"]["enable"].get_or(ServiceConfig.MeshEnabled);
+ ServiceConfig.MeshEnabled = lua["mesh"]["enable"].get_or(ServiceConfig.MeshEnabled);
auto UpdateStringValueFromConfig = [](const sol::table& Table, std::string_view Key, std::string& OutValue) {
// Update the specified config value unless it has been set, i.e. from command line
diff --git a/zenserver/upstream/upstreamcache.cpp b/zenserver/upstream/upstreamcache.cpp
index 40d7ebd26..6c9baf9b0 100644
--- a/zenserver/upstream/upstreamcache.cpp
+++ b/zenserver/upstream/upstreamcache.cpp
@@ -100,7 +100,7 @@ namespace detail {
virtual bool Initialize() override
{
- //TODO: Test and authenticate Jupiter client connection
+ // TODO: Test and authenticate Jupiter client connection
return !m_Client->ServiceUrl().empty();
}
@@ -216,8 +216,8 @@ namespace detail {
~ZenUpstreamEndpoint() = default;
virtual bool Initialize() override
- {
- //TODO: Test and authenticate Zen client connection
+ {
+ // TODO: Test and authenticate Zen client connection
return !m_Client->ServiceUrl().empty();
}