From d0aa0c5e05141857ef2ca21092f5c4d05f1d0ddb Mon Sep 17 00:00:00 2001 From: Nova Date: Sun, 23 Feb 2025 20:02:21 +0330 Subject: [PATCH] fix process_path_regex saving --- src/dataStore/Database.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dataStore/Database.cpp b/src/dataStore/Database.cpp index c0ad251..3386e98 100644 --- a/src/dataStore/Database.cpp +++ b/src/dataStore/Database.cpp @@ -428,7 +428,7 @@ namespace NekoGui { _add(new configItem("port_range", &port_range, itemType::stringList)); _add(new configItem("process_name", &process_name, itemType::stringList)); _add(new configItem("process_path", &process_path, itemType::stringList)); - _add(new configItem("process_path_regex", &process_path, itemType::stringList)); + _add(new configItem("process_path_regex", &process_path_regex, itemType::stringList)); _add(new configItem("rule_set", &rule_set, itemType::stringList)); _add(new configItem("invert", &invert, itemType::boolean)); _add(new configItem("outboundID", &outboundID, itemType::integer));