diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-01 14:01:21 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2015-02-01 14:01:21 -0500 |
| commit | 5bb75227dba6772d0c801b94ede87d08e5c9a1d6 (patch) | |
| tree | 86f7bfd32666e84b8ec9a4e699391e2cd58b3e48 /MediaBrowser.Server.Implementations/Session/SessionManager.cs | |
| parent | c60018fb0963079d3c172a7d3aafd33ccd966f70 (diff) | |
update roku api
Diffstat (limited to 'MediaBrowser.Server.Implementations/Session/SessionManager.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/Session/SessionManager.cs | 3 |
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) |
