Skip to content

Commit

Permalink
Remove unnecessary Trim() from GetPersonFromXmlNode
Browse files Browse the repository at this point in the history
  • Loading branch information
barronpm committed Oct 6, 2023
1 parent 40e1c5f commit c38fbec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MediaBrowser.Controller/Extensions/XmlReaderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ public static bool TryReadDateTimeExact(this XmlReader reader, string formatStri

return new PersonInfo
{
Name = name.Trim(),
Name = name,
Role = role,
Type = type,
SortOrder = sortOrder,
Expand Down

0 comments on commit c38fbec

Please sign in to comment.