mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-01 07:55:22 +02:00
@@ -153,7 +153,12 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
|
||||
|
||||
private int GetMinimumAllowedRuntime(Movie movie)
|
||||
{
|
||||
return 360; //6 minutes
|
||||
if (movie.Runtime < 1)
|
||||
{
|
||||
return 5 * 60;
|
||||
}
|
||||
|
||||
return movie.Runtime / 5;
|
||||
}
|
||||
|
||||
private int GetMinimumAllowedRuntime(Series series)
|
||||
|
Reference in New Issue
Block a user