mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
catch when negative playback position is reported
This commit is contained in:
parent
69f4ef6c77
commit
aec36e8096
@ -255,14 +255,13 @@ namespace MediaBrowser.Server.Implementations.Session
|
||||
/// <summary>
|
||||
/// Used to report playback progress for an item
|
||||
/// </summary>
|
||||
/// <param name="user">The user.</param>
|
||||
/// <param name="item">The item.</param>
|
||||
/// <param name="positionTicks">The position ticks.</param>
|
||||
/// <param name="isPaused">if set to <c>true</c> [is paused].</param>
|
||||
/// <param name="sessionId">The session id.</param>
|
||||
/// <returns>Task.</returns>
|
||||
/// <exception cref="System.ArgumentNullException">
|
||||
/// </exception>
|
||||
/// <exception cref="System.ArgumentNullException"></exception>
|
||||
/// <exception cref="System.ArgumentOutOfRangeException">positionTicks</exception>
|
||||
public async Task OnPlaybackProgress(BaseItem item, long? positionTicks, bool isPaused, Guid sessionId)
|
||||
{
|
||||
if (item == null)
|
||||
@ -270,6 +269,11 @@ namespace MediaBrowser.Server.Implementations.Session
|
||||
throw new ArgumentNullException();
|
||||
}
|
||||
|
||||
if (positionTicks.HasValue && positionTicks.Value < 0)
|
||||
{
|
||||
throw new ArgumentOutOfRangeException("positionTicks");
|
||||
}
|
||||
|
||||
var session = Sessions.First(i => i.Id.Equals(sessionId));
|
||||
|
||||
UpdateNowPlayingItem(session, item, isPaused, positionTicks);
|
||||
@ -310,6 +314,11 @@ namespace MediaBrowser.Server.Implementations.Session
|
||||
throw new ArgumentNullException();
|
||||
}
|
||||
|
||||
if (positionTicks.HasValue && positionTicks.Value < 0)
|
||||
{
|
||||
throw new ArgumentOutOfRangeException("positionTicks");
|
||||
}
|
||||
|
||||
var session = Sessions.First(i => i.Id.Equals(sessionId));
|
||||
|
||||
RemoveNowPlayingItem(session, item);
|
||||
|
Loading…
Reference in New Issue
Block a user