diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-15 15:03:57 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-15 15:03:57 -0500 |
| commit | 988c898fc1e53aa1200616b32a0238033b5a2534 (patch) | |
| tree | 1742a8a697b853b46eaf9fd4e1df30d676659d64 /MediaBrowser.Api/BaseApiService.cs | |
| parent | 7708d96b8b67c0a3ead5d13619b4b8e4ebcc94b5 (diff) | |
support timeshifting with safari mac and edge mobile
Diffstat (limited to 'MediaBrowser.Api/BaseApiService.cs')
| -rw-r--r-- | MediaBrowser.Api/BaseApiService.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MediaBrowser.Api/BaseApiService.cs b/MediaBrowser.Api/BaseApiService.cs index 1ee499ed5..1f21a1dd1 100644 --- a/MediaBrowser.Api/BaseApiService.cs +++ b/MediaBrowser.Api/BaseApiService.cs @@ -145,12 +145,13 @@ namespace MediaBrowser.Api client.IndexOf("media center", StringComparison.OrdinalIgnoreCase) != -1 || client.IndexOf("classic", StringComparison.OrdinalIgnoreCase) != -1 || client.IndexOf("roku", StringComparison.OrdinalIgnoreCase) != -1 || - client.IndexOf("samsung", StringComparison.OrdinalIgnoreCase) != -1) + client.IndexOf("samsung", StringComparison.OrdinalIgnoreCase) != -1 || + client.IndexOf("androidtv", StringComparison.OrdinalIgnoreCase) != -1) { options.Fields.Add(Model.Querying.ItemFields.ChildCount); } - else if (client.IndexOf("web", StringComparison.OrdinalIgnoreCase) == -1 && + if (client.IndexOf("web", StringComparison.OrdinalIgnoreCase) == -1 && // covers both emby mobile and emby for android mobile client.IndexOf("mobile", StringComparison.OrdinalIgnoreCase) == -1 && |
