Skip to content

Commit

Permalink
Fix RegistryWalker (#701)
Browse files Browse the repository at this point in the history
  • Loading branch information
gfs authored Sep 11, 2023
1 parent f7646d7 commit e922891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/Utils/RegistryWalker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ e is UnauthorizedAccessException ||
{
foreach (string subkey in currentKey.GetSubKeyNames())
{
keys.Push($"{key}\\{subkey}");
keys.Push(!string.IsNullOrEmpty(key) ? $"{key}\\{subkey}" : subkey);
}
}
}
Expand Down

0 comments on commit e922891

Please sign in to comment.