mirror of
https://github.com/Radarr/Radarr
synced 2026-04-21 10:41:27 +02:00
Runtime error fix.
This commit is contained in:
parent
55c437d980
commit
3f4ee6d841
1 changed files with 1 additions and 1 deletions
|
|
@ -158,7 +158,7 @@ private int GetMinimumAllowedRuntime(Movie movie)
|
|||
return 5 * 60;
|
||||
}
|
||||
|
||||
return movie.Runtime / 5;
|
||||
return movie.Runtime / 5 * 60;
|
||||
}
|
||||
|
||||
private int GetMinimumAllowedRuntime(Series series)
|
||||
|
|
|
|||
Loading…
Reference in a new issue