From deea98d5b61d066bdc7a68163edd2c4bd28d3a6b Mon Sep 17 00:00:00 2001 From: Vaxry Date: Sun, 16 Nov 2025 00:51:32 +0000 Subject: [PATCH] config/parser: don't return found on dontErrorOnMissing in special fixes https://github.com/hyprwm/hyprland-plugins/issues/539 --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cpp b/src/config.cpp index 1b14781..8c2d466 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -372,7 +372,7 @@ std::pair CConfig::configSetValueSafe(const std::string& com if (VALUEIT != sc->values.end()) found = true; else if (sc->descriptor->dontErrorOnMissing) - return {true, result}; // will return a success, cuz we want to ignore missing + return {false, result}; // will return a success, cuz we want to ignore missing break; }