fix: use continue instead of return

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Andrew Welker 2025-07-25 10:27:50 -05:00 committed by GitHub
parent ee6f9416a3
commit 615f640ebb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -155,7 +155,7 @@ namespace PepperDash.Essentials.Core
prop.Parent.Replace(secret);
}
if (!(prop.Value is JObject recurseProp)) return;
if (!(prop.Value is JObject recurseProp)) continue;
CheckForSecrets(recurseProp.Properties());
}