From f7ed835ba53a08e8a0e8d62c0cce15b3f087f70e Mon Sep 17 00:00:00 2001 From: Ruud Date: Mon, 9 Mar 2015 16:36:09 +0100 Subject: [PATCH] Change minimum movie size fix #4730 --- couchpotato/core/plugins/scanner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/couchpotato/core/plugins/scanner.py b/couchpotato/core/plugins/scanner.py index aca9e64..8ba5dae 100644 --- a/couchpotato/core/plugins/scanner.py +++ b/couchpotato/core/plugins/scanner.py @@ -63,8 +63,8 @@ class Scanner(Plugin): } file_sizes = { # in MB - 'movie': {'min': 300}, - 'trailer': {'min': 2, 'max': 250}, + 'movie': {'min': 200}, + 'trailer': {'min': 2, 'max': 199}, 'backdrop': {'min': 0, 'max': 5}, }