diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-01 21:35:57 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-01 21:35:57 -0400 |
| commit | f0542f69bc7b9fa3b086c8b9e73470809ea2bf00 (patch) | |
| tree | 6923e6c9a20b379667423610240d2179269f8084 /MediaBrowser.Controller | |
| parent | b828af0a0aeda85be77d7a0a6cdfbf1136f0fac2 (diff) | |
record bluray playlist file name
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Dto/DtoBuilder.cs | 1 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dto/DtoBuilder.cs b/MediaBrowser.Controller/Dto/DtoBuilder.cs index f762c7cc6..cc14a9e02 100644 --- a/MediaBrowser.Controller/Dto/DtoBuilder.cs +++ b/MediaBrowser.Controller/Dto/DtoBuilder.cs @@ -483,6 +483,7 @@ namespace MediaBrowser.Controller.Dto dto.VideoType = video.VideoType; dto.Video3DFormat = video.Video3DFormat; dto.IsoType = video.IsoType; + dto.MainFeaturePlaylistName = video.MainFeaturePlaylistName; dto.PartCount = video.AdditionalPartIds.Count + 1; diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index e8896db6f..7ce008c5e 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -95,6 +95,8 @@ namespace MediaBrowser.Controller.Entities } } + public string MainFeaturePlaylistName { get; set; } + /// <summary> /// Gets the playable stream files. /// </summary> |
