From 8b66eea1408a7348080612c5c890b3d8e393fcee Mon Sep 17 00:00:00 2001 From: Gabe Date: Sun, 14 Mar 2021 23:21:46 +0100 Subject: [PATCH] 2 new suffixes in the wild Started to run into "WRTEAM" and "CAPTCHA" in the wild. --- docs/NZBGet/scripts/Clean/Clean.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/NZBGet/scripts/Clean/Clean.py b/docs/NZBGet/scripts/Clean/Clean.py index 3cbf93030..bb563f168 100644 --- a/docs/NZBGet/scripts/Clean/Clean.py +++ b/docs/NZBGet/scripts/Clean/Clean.py @@ -52,7 +52,9 @@ fwp = re.sub('(?i)\[eztv\]\.nzb$', '.nzb', fwp) fwp = re.sub('(?i)\[TGx\]\.nzb$', '.nzb', fwp) fwp = re.sub('(?i)\[TGx\]-xpost\.nzb$', '.nzb', fwp) fwp = re.sub('(?i)\[ettv\]\.nzb$', '.nzb', fwp) +fwp = re.sub('(?i)\-WRTEAM\.nzb$', '.nzb', fwp) +fwp = re.sub('(?i)\-CAPTCHA\.nzb$', '.nzb', fwp) if fwp: print('[NZB] NZBNAME=', fwp, sep='') -sys.exit(POSTPROCESS_SUCCESS) +sys.exit(POSTPROCESS_SUCCESS) \ No newline at end of file