mirror of
https://github.com/fergalmoran/Readarr.git
synced 2026-02-10 09:57:20 +00:00
Trim spaces from a split list in GetValueConverter
This commit is contained in:
@@ -241,7 +241,7 @@ namespace Readarr.Http.ClientSchema
|
||||
}
|
||||
else
|
||||
{
|
||||
return fieldValue.ToString().Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
return fieldValue.ToString().Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).Select(v => v.Trim());
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user