Skip to content

Commit

Permalink
trim hints
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencohn committed Dec 11, 2023
1 parent d4a345b commit 725492d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ResxProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static int MergeHints(XElement root, XElement hints)
var count = 0;
foreach (var hint in hints.Elements())
{
var preferred = hint.Element("preferred").Value;
var preferred = hint.Element("preferred").Value.Trim();

var element = root.Elements("data").FirstOrDefault(e =>
e.Attribute("name").Value == hint.Attribute("name").Value &&
Expand Down

0 comments on commit 725492d

Please sign in to comment.