diff options
| author | Bond_009 <bond.009@outlook.com> | 2020-11-14 15:47:34 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-11-14 20:27:48 +0100 |
| commit | bc7359f87dafb972dfe79667128f307643015bac (patch) | |
| tree | 8d5b4c968e9b793496bf454316beea4cbd45d96f /Emby.Server.Implementations/Dto | |
| parent | 569874a212e550d034d7c4ded5d95b6b770bf07a (diff) | |
Use string.Split(char) where possible instead of string.Split(char[])
Diffstat (limited to 'Emby.Server.Implementations/Dto')
| -rw-r--r-- | Emby.Server.Implementations/Dto/DtoService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Dto/DtoService.cs b/Emby.Server.Implementations/Dto/DtoService.cs index 73502c2c9f..f3e3a6397f 100644 --- a/Emby.Server.Implementations/Dto/DtoService.cs +++ b/Emby.Server.Implementations/Dto/DtoService.cs @@ -275,7 +275,7 @@ namespace Emby.Server.Implementations.Dto continue; } - var containers = container.Split(new[] { ',' }); + var containers = container.Split(','); if (containers.Length < 2) { continue; |
