mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07: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 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
|
||||||
return 5 * 60;
|
return 5 * 60;
|
||||||
}
|
}
|
||||||
|
|
||||||
return movie.Runtime / 5;
|
return movie.Runtime / 5 * 60;
|
||||||
}
|
}
|
||||||
|
|
||||||
private int GetMinimumAllowedRuntime(Series series)
|
private int GetMinimumAllowedRuntime(Series series)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue