removed restriction to 3 digits in episodenumber and 4 in season numbers

This commit is contained in:
Narfinger
2019-11-07 10:50:02 +09:00
parent 4a20260a27
commit 9cd62d661f
2 changed files with 11 additions and 6 deletions

View File

@@ -2489,6 +2489,11 @@ namespace Emby.Server.Implementations.Library
}
else
{
/*
Anime series don't generally have a season in their file name, however,
tvdb needs a season to correctly get the metadata.
Hence, a null season needs to be filled with something. */
//FIXME perhaps this would be better for tvdb parser to ask for season 1 if no season is specified
episode.ParentIndexNumber = 1;
}