From 0f17f0510446db7c726366fcbdfe8e5d72a4189e Mon Sep 17 00:00:00 2001 From: HeroponRikiBestest Date: Tue, 2 Dec 2025 10:39:26 -0500 Subject: [PATCH] Fix minor nested json issue --- ProtectionScan/Features/MainFeature.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ProtectionScan/Features/MainFeature.cs b/ProtectionScan/Features/MainFeature.cs index bd007783..dfb425b7 100644 --- a/ProtectionScan/Features/MainFeature.cs +++ b/ProtectionScan/Features/MainFeature.cs @@ -345,6 +345,7 @@ private static void InsertNode(Dictionary dict, if (pathParts.Length == 0) { modifyNodeList.Add((dict, path, protections)); + dict[path] = new Dictionary(); return; }