From 78f9b00a81957a65df85f3d4bdf8ff9bb6e5e3af Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 15 Jan 2022 14:32:51 +0100 Subject: [PATCH] Fix missing option name in last commit --- src/common/configuration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/configuration.cpp b/src/common/configuration.cpp index 212a0b58..db772674 100644 --- a/src/common/configuration.cpp +++ b/src/common/configuration.cpp @@ -84,7 +84,7 @@ Configuration::Configuration(const fs::path& config_path, if (const auto parsed_value = value.as_string()) { group = parsed_value->get(); } else { - invalid_options.emplace_back(std::string()); + invalid_options.emplace_back(key); } } else if (key == "disable_pipes") { // This option can be either enabled or disable with a boolean,