1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-23 22:25:14 -04:00

Fixed: Tweaked sample detection for short episodes.

This commit is contained in:
Taloth Saldono
2016-06-25 22:50:16 +02:00
parent c2a2746ccf
commit 006dc9202b
2 changed files with 11 additions and 2 deletions
@@ -108,7 +108,7 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport
private int GetMinimumAllowedRuntime(Series series)
{
//Webisodes - 90 seconds
if (series.Runtime <= 5)
if (series.Runtime <= 10)
{
return 90;
}