mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 06:48:35 +01:00
Fixed absolute episodes being being resolved and the tvdb provider not identifying them
Episode resolver will only consider absolute episodes (those without a season) if the media type is TV Series for the collection.
This commit is contained in:
@@ -273,7 +273,7 @@ namespace MediaBrowser.Controller.Entities.TV
|
||||
{
|
||||
if (!IndexNumber.HasValue && !string.IsNullOrEmpty(Path))
|
||||
{
|
||||
IndexNumber = TVUtils.GetEpisodeNumberFromFile(Path, Parent is Season);
|
||||
IndexNumber = TVUtils.GetEpisodeNumberFromFile(Path, true);
|
||||
|
||||
// If a change was made record it
|
||||
if (IndexNumber.HasValue)
|
||||
|
||||
Reference in New Issue
Block a user