diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-24 11:33:22 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-10-24 11:33:22 -0400 |
| commit | 9babddb2715b1fcc4a40043d7d9bddfeb958be20 (patch) | |
| tree | 36b36d8881899e52adefd6d29a0da4253c17abbf /MediaBrowser.Server.Implementations/Dto | |
| parent | b6f019b7f2d16d5c3ba4e51a4f7cd6f58b877c0a (diff) | |
update live tv cache location
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Dto/DtoService.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs index 97867d6a2b..20e1eb5434 100644 --- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs +++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs @@ -1310,6 +1310,11 @@ namespace MediaBrowser.Server.Implementations.Dto dto.Video3DFormat = video.Video3DFormat; dto.IsoType = video.IsoType; + if (video.HasSubtitles) + { + dto.HasSubtitles = video.HasSubtitles; + } + if (video.AdditionalParts.Count != 0) { dto.PartCount = video.AdditionalParts.Count + 1; |
