mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-20 15:55:25 +03:00
Remove unused code...
This commit is contained in:
@@ -547,9 +547,9 @@ namespace MediaBrowser.Server.Implementations.Session
|
||||
await OnPlaybackStopped(new PlaybackStopInfo
|
||||
{
|
||||
Item = session.NowPlayingItem,
|
||||
ItemId = (session.NowPlayingItem == null ? null : session.NowPlayingItem.Id),
|
||||
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
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user