Use string.Split(char) where possible instead of string.Split(char[])

This commit is contained in:
Bond_009
2020-11-14 15:47:34 +01:00
parent 569874a212
commit bc7359f87d
11 changed files with 30 additions and 30 deletions

View File

@@ -275,7 +275,7 @@ namespace Emby.Server.Implementations.Dto
continue;
}
var containers = container.Split(new[] { ',' });
var containers = container.Split(',');
if (containers.Length < 2)
{
continue;