diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-02-03 00:15:28 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2019-02-03 10:44:07 +0100 |
| commit | cb7bffc233bcdb1dfb2b6be629dc8f13e482cd3b (patch) | |
| tree | 182a83d75ba5c997403c7eb341090e56c30e0a94 /MediaBrowser.Api/BaseApiService.cs | |
| parent | da2caa29027c2a0a3725c4fd3a08a6674ad374c8 (diff) | |
Remove unused string split
Diffstat (limited to 'MediaBrowser.Api/BaseApiService.cs')
| -rw-r--r-- | MediaBrowser.Api/BaseApiService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/BaseApiService.cs b/MediaBrowser.Api/BaseApiService.cs index 7b08a3c52..451ee72dd 100644 --- a/MediaBrowser.Api/BaseApiService.cs +++ b/MediaBrowser.Api/BaseApiService.cs @@ -58,7 +58,7 @@ namespace MediaBrowser.Api return Array.Empty<Guid>(); } - return value.Split(new[] { ',', '|' }, StringSplitOptions.RemoveEmptyEntries) + return value.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries) .Select(i => new Guid(i)) .ToArray(); } |
