diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-11 22:38:40 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-06-11 22:38:40 -0400 |
| commit | 29ed437d79797c4cc35b6591eb35cda021c70b37 (patch) | |
| tree | d761480f6f2eb6e54e3932e46c1cd78c4062b083 /MediaBrowser.Controller | |
| parent | a18f4e37ac4cfa0aac77bc64fb56b1d43bcde63a (diff) | |
chapter downloading fixes
Diffstat (limited to 'MediaBrowser.Controller')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index ef12d46d6..3df3f7440 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -560,7 +560,8 @@ namespace MediaBrowser.Controller.Entities Size = i.Size, Formats = (i.FormatName ?? string.Empty).Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList(), Timestamp = i.Timestamp, - Type = type + Type = type, + PlayableStreamFileNames = i.PlayableStreamFileNames.ToList() }; if (string.IsNullOrEmpty(info.Container)) |
