2024-07-18, 04:57 PM
(This post was last modified: 2024-07-18, 04:57 PM by TheDreadPirate.)
Looking at the code, it SHOULD be skipping those movies.
https://github.com/jellyfin/jellyfin-plu...ger.cs#L38
The log message indicates it is entering this if statement.
And the "return" should be returning to the caller and moving on to the next movie to evaluate.
Submit a bug report here.
https://github.com/jellyfin/jellyfin-plu...ets/issues
Once you've submitted your report, provide the link and I will comment confirming the bug as I was able to replicate your problem.
https://github.com/jellyfin/jellyfin-plu...ger.cs#L38
The log message indicates it is entering this if statement.
Code:
if (movies.Count < minimumNumberOfMovies)
{
_logger.LogInformation("Minimum number of movies is {Count}, but there is/are only {MovieCount}: {MovieNames}",
minimumNumberOfMovies, movies.Count, string.Join(", ", movies.Select(m => m.Name)));
return;
}
And the "return" should be returning to the caller and moving on to the next movie to evaluate.
Submit a bug report here.
https://github.com/jellyfin/jellyfin-plu...ets/issues
Once you've submitted your report, provide the link and I will comment confirming the bug as I was able to replicate your problem.