From 93377a1b549bc2fd44bab6e58ed21801b4720b26 Mon Sep 17 00:00:00 2001 From: Nova Date: Fri, 11 Jul 2025 13:35:01 +0330 Subject: [PATCH] fix default outbound not being saved --- src/dataStore/RouteEntity.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dataStore/RouteEntity.cpp b/src/dataStore/RouteEntity.cpp index 9035b1e..d4fdb39 100644 --- a/src/dataStore/RouteEntity.cpp +++ b/src/dataStore/RouteEntity.cpp @@ -845,6 +845,7 @@ namespace NekoGui { _add(new configItem("id", &id, itemType::integer)); _add(new configItem("name", &name, itemType::string)); _add(new configItem("rules", &castedRules, itemType::jsonStoreList)); + _add(new configItem("default_outbound", &defaultOutboundID, itemType::integer)); } RoutingChain::RoutingChain(const RoutingChain& other) : JsonStore(other) {