mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 05:57:20 -04:00
Update Emby.Server.Implementations/TV/TVSeriesManager.cs
This commit is contained in:
parent
371092cf62
commit
673d2c0d26
1 changed files with 2 additions and 1 deletions
|
@ -206,7 +206,8 @@ namespace Emby.Server.Implementations.TV
|
|||
DtoOptions = dtoOptions
|
||||
}).Cast<Episode>().FirstOrDefault();
|
||||
|
||||
if (!(nextEpisode is null)) {
|
||||
if (nextEpisode != null)
|
||||
{
|
||||
var userData = _userDataManager.GetUserData(user, nextEpisode);
|
||||
|
||||
if (userData.PlaybackPositionTicks > 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue