From 5cc26422f1d89c06f3eb1ad0a34a01cbb94fefc1 Mon Sep 17 00:00:00 2001 From: CodeX Date: Fri, 10 Apr 2026 15:51:10 +0200 Subject: [PATCH] Replace broken regex patterns with wildcards qBittorrent's excluded file names field uses simple wildcards, not regex. The regex: prefix is not supported and was silently ignored. Replace the two non-functional regex lines with four wildcard patterns: *.7z.* - 7z multi-volume (.7z.001, .7z.002, ...) *.r?? - rar volumes (.r00-.r99) *.s?? - rar overflow (.s00-.s99) *.z?? - zip splits (.z00-.z99) These overlap harmlessly with upstream's existing literal entries (*.r00-*.r04 etc.) and will be preserved as custom additions by the three-way merge. --- blacklist | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/blacklist b/blacklist index b94f7ef..4313c7f 100644 --- a/blacklist +++ b/blacklist @@ -843,6 +843,8 @@ *sample.wmv Trailer.* VOSTFR +*.7z.* +*.r?? +*.s?? +*.z?? api -regex:(?i)^.*\.7z\.\d+$ -regex:(?i)^.*\.[r-z]\d+$ -- 2.52.0