mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 20:17:03 +00:00
fix: use continue instead of return
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
ee6f9416a3
commit
615f640ebb
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue