[PR #4628] [MERGED] Prevent GetUpNext from returning episodes in progress #10200

Closed
opened 2026-02-07 06:15:51 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/4628
Author: @heyhippari
Created: 12/1/2020
Status: Merged
Merged: 12/2/2020
Merged by: @cvium

Base: masterHead: no-next-resumable


📝 Commits (4)

  • 21a67a6 Prevent GetUpNext from returning episodes in progress
  • 7ba9ba4 Fix typo
  • 371092c Fix possible nullref
  • 673d2c0 Update Emby.Server.Implementations/TV/TVSeriesManager.cs

📊 Changes

1 file changed (+13 additions, -1 deletions)

View changed files

📝 Emby.Server.Implementations/TV/TVSeriesManager.cs (+13 -1)

📄 Description

Changes

GetUpNext was returning episodes that are in progress, leading to this:

Screenshot_2020-12-01 Jellyfin

Its purpose should be to only return future episodes of a show that is already started, but not in progress episodes.

To achieve this, this gets the user data of the episode to be added to the list, checks if it's in progress and just returns null if it is.

Issues


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/4628 **Author:** [@heyhippari](https://github.com/heyhippari) **Created:** 12/1/2020 **Status:** ✅ Merged **Merged:** 12/2/2020 **Merged by:** [@cvium](https://github.com/cvium) **Base:** `master` ← **Head:** `no-next-resumable` --- ### 📝 Commits (4) - [`21a67a6`](https://github.com/jellyfin/jellyfin/commit/21a67a66d250cdb8569cc85398d8378c88b52013) Prevent GetUpNext from returning episodes in progress - [`7ba9ba4`](https://github.com/jellyfin/jellyfin/commit/7ba9ba4780d9ce3a17ff8218d45e46638407e3c7) Fix typo - [`371092c`](https://github.com/jellyfin/jellyfin/commit/371092cf62f423fe62eb72f6c3d450966dc49b7d) Fix possible nullref - [`673d2c0`](https://github.com/jellyfin/jellyfin/commit/673d2c0d261bffae1769c3a357cd5f01912afc80) Update Emby.Server.Implementations/TV/TVSeriesManager.cs ### 📊 Changes **1 file changed** (+13 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `Emby.Server.Implementations/TV/TVSeriesManager.cs` (+13 -1) </details> ### 📄 Description **Changes** GetUpNext was returning episodes that are in progress, leading to this: ![Screenshot_2020-12-01 Jellyfin](https://user-images.githubusercontent.com/19396809/100743910-40083200-33dd-11eb-8fd8-5d2fd8af8101.png) Its purpose should be to only return future episodes of a show that is already started, but not in progress episodes. To achieve this, this gets the user data of the episode to be added to the list, checks if it's in progress and just returns null if it is. **Issues** <!-- Tag any issues that this PR solves here. ex. Fixes # --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 06:15:51 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#10200