From 5ff056844c10c5d8905700727c3c503c7a35f928 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Mon, 20 May 2019 21:17:54 +1200 Subject: [PATCH] Fix NoExtractFailed usage. Fixes #1618 --- nzbToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nzbToMedia.py b/nzbToMedia.py index f4fb0759..03f19a8d 100755 --- a/nzbToMedia.py +++ b/nzbToMedia.py @@ -791,7 +791,7 @@ def process(input_directory, input_name=None, status=0, client_agent='manual', d input_name, input_directory = convert_to_ascii(input_name, input_directory) - if extract == 1: + if extract == 1 and not (status > 0 and core.NOEXTRACTFAILED): logger.debug('Checking for archives to extract in directory: {0}'.format(input_directory)) extract_files(input_directory)