Fix wildcard patterns to match digits only #8

Merged
CodeX merged 1 commits from fix/wildcard-digit-only into main 2026-04-10 19:15:53 +02:00
Owner

See commit message for details.

See commit message for details.
CodeX added 1 commit 2026-04-10 19:14:52 +02:00
*.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
CodeX merged commit c5e4a8c8f0 into main 2026-04-10 19:15:53 +02:00
CodeX deleted branch fix/wildcard-digit-only 2026-04-10 19:15:53 +02:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: arr/blocklists#8