From 70678ddd2822186223905f3bff2745dec1b1a9b7 Mon Sep 17 00:00:00 2001 From: CodeX Date: Fri, 10 Apr 2026 19:14:43 +0200 Subject: [PATCH] Fix wildcard patterns to match digits only *.r?? *.s?? *.z?? match any 3-character extension starting with that letter, which blocks legitimate files like .srt .ssa .sub that are in the whitelist. The whitelist subtraction cannot prevent this because it operates on exact strings in the blacklist file, not on qBittorrent's glob expansion. Replace with digit-only character classes: *.r[0-9][0-9] - .r00-.r99 only *.s[0-9][0-9] - .s00-.s99 only *.z[0-9][0-9] - .z00-.z99 only --- blacklist | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blacklist b/blacklist index 4313c7f..4eb0d31 100644 --- a/blacklist +++ b/blacklist @@ -844,7 +844,7 @@ Trailer.* VOSTFR *.7z.* -*.r?? -*.s?? -*.z?? +*.r[0-9][0-9] +*.s[0-9][0-9] +*.z[0-9][0-9] api