Skip to content

Commit

Permalink
fixing remap on casing delta
Browse files Browse the repository at this point in the history
  • Loading branch information
FriedrichWeinmann committed Sep 17, 2024
1 parent 5e8e64a commit 18c920a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion library/PSFramework/Commands/ConvertToPSFHashtableCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,9 @@ protected override void ProcessRecord()
{
if (result.ContainsKey(key))
{
result[Remap[key]] = result[key];
object value = result[key];
result.Remove(key);
result[Remap[key]] = value;
}
}
}
Expand Down

0 comments on commit 18c920a

Please sign in to comment.