aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-01 14:01:21 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-02-01 14:01:21 -0500
commit5bb75227dba6772d0c801b94ede87d08e5c9a1d6 (patch)
tree86f7bfd32666e84b8ec9a4e699391e2cd58b3e48 /MediaBrowser.Server.Implementations/Session/SessionManager.cs
parentc60018fb0963079d3c172a7d3aafd33ccd966f70 (diff)
update roku api
Diffstat (limited to 'MediaBrowser.Server.Implementations/Session/SessionManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Session/SessionManager.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Session/SessionManager.cs b/MediaBrowser.Server.Implementations/Session/SessionManager.cs
index 4bce7db9f..6166e3d65 100644
--- a/MediaBrowser.Server.Implementations/Session/SessionManager.cs
+++ b/MediaBrowser.Server.Implementations/Session/SessionManager.cs
@@ -516,7 +516,8 @@ namespace MediaBrowser.Server.Implementations.Session
Item = session.NowPlayingItem,
ItemId = (session.NowPlayingItem == null ? null : session.NowPlayingItem.Id),
SessionId = session.Id,
- MediaSourceId = (session.PlayState == null ? null : session.PlayState.MediaSourceId)
+ MediaSourceId = (session.PlayState == null ? null : session.PlayState.MediaSourceId),
+ PositionTicks = session.PlayState == null ? null : session.PlayState.PositionTicks
});
}
catch (Exception ex)