diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-05 10:38:36 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-03-05 10:38:36 -0500 |
| commit | ce3f2bdd20024e8dd6cec34bb42e38af0565c225 (patch) | |
| tree | a50eb00e62695b16314950045e759e539312b068 /Emby.Server.Implementations/Dto | |
| parent | 8b77a893734e195239553c633f976907eccd0a2c (diff) | |
reduce AnalyzeDurationMs for live tv
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 8b6b388db..e0df65b8e 100644 --- a/Emby.Server.Implementations/Dto/DtoService.cs +++ b/Emby.Server.Implementations/Dto/DtoService.cs @@ -491,7 +491,7 @@ namespace Emby.Server.Implementations.Dto } } - if (!(item is LiveTvProgram)) + if (!(item is LiveTvProgram) || fields.Contains(ItemFields.PlayAccess)) { dto.PlayAccess = item.GetPlayAccess(user); } |
