aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Dto/DtoService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-24 22:00:19 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-04-24 22:00:19 -0400
commiteca1ba0b12da195dff3c31ffb799e4e3a7b5b5b9 (patch)
tree436352b39c2c78e1b6731a9d44c09dd8407bed2f /MediaBrowser.Server.Implementations/Dto/DtoService.cs
parent725e1a1509231650ae448d9eb7db55cce6fcd6bb (diff)
fixes #797 - Determine mpeg2ts timestamp info
Diffstat (limited to 'MediaBrowser.Server.Implementations/Dto/DtoService.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Dto/DtoService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Dto/DtoService.cs b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
index d32e6ad0e..ee6bbb04f 100644
--- a/MediaBrowser.Server.Implementations/Dto/DtoService.cs
+++ b/MediaBrowser.Server.Implementations/Dto/DtoService.cs
@@ -1237,7 +1237,8 @@ namespace MediaBrowser.Server.Implementations.Dto
VideoType = i.VideoType,
Container = i.Container,
Size = i.Size,
- Formats = (i.FormatName ?? string.Empty).Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList()
+ Formats = (i.FormatName ?? string.Empty).Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList(),
+ Timestamp = i.Timestamp
};
if (string.IsNullOrEmpty(info.Container))