Add whitespace handling and tests

This commit is contained in:
crobibero
2020-10-16 09:37:35 -06:00
parent 7565ae22cb
commit b2662894cf
2 changed files with 28 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ namespace MediaBrowser.Common.Json.Converters
var entries = new T[stringEntries.Length];
for (var i = 0; i < stringEntries.Length; i++)
{
entries[i] = (T)_typeConverter.ConvertFrom(stringEntries[i]);
entries[i] = (T)_typeConverter.ConvertFrom(stringEntries[i].Trim());
}
return entries;