summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Config.cpp b/src/Config.cpp
index a28d5647..3312ac81 100644
--- a/src/Config.cpp
+++ b/src/Config.cpp
@@ -655,7 +655,7 @@ Config::update_from_file(const std::string& path)
return parse_config_file(
path, [&](const auto& /*line*/, const auto& key, const auto& value) {
if (!key.empty()) {
- this->set_item(key, value, std::nullopt, false, path);
+ set_item(key, value, std::nullopt, false, path);
}
});
}