Skip to content

Commit

Permalink
Fix lowercase resource names causing some issues
Browse files Browse the repository at this point in the history
Fixes #62
  • Loading branch information
Klocman committed May 24, 2022
1 parent a158c4a commit f6b3472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResourceOperations/ResourceHolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class ResourceHolder

public ResourceHolder()
{
Languages = new SortedDictionary<string, LanguageHolder>();
Languages = new SortedDictionary<string, LanguageHolder>(StringComparer.OrdinalIgnoreCase);
_deletedKeys = new List<string>();
}

Expand Down

0 comments on commit f6b3472

Please sign in to comment.