Update Emby.Server.Implementations/TV/TVSeriesManager.cs
This commit is contained in:
parent
371092cf62
commit
673d2c0d26
|
@ -206,7 +206,8 @@ namespace Emby.Server.Implementations.TV
|
||||||
DtoOptions = dtoOptions
|
DtoOptions = dtoOptions
|
||||||
}).Cast<Episode>().FirstOrDefault();
|
}).Cast<Episode>().FirstOrDefault();
|
||||||
|
|
||||||
if (!(nextEpisode is null)) {
|
if (nextEpisode != null)
|
||||||
|
{
|
||||||
var userData = _userDataManager.GetUserData(user, nextEpisode);
|
var userData = _userDataManager.GetUserData(user, nextEpisode);
|
||||||
|
|
||||||
if (userData.PlaybackPositionTicks > 0)
|
if (userData.PlaybackPositionTicks > 0)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user