qbit_manage/modules
bakerboy448 dcb81a7234 Fixed: BHD 'Season Pack:' message not detected as unregistered
The `check_for_unregistered_torrents_in_bhd` function strips the colon
from tracker messages before checking against `UNREGISTERED_MSGS_BHD`:

```python
status_filtered = msg_up.split(":")[0]  # "SEASON PACK: ..." becomes "SEASON PACK"
```

However, the pattern list had "SEASON PACK:" (with colon), which would
never match the filtered text "SEASON PACK" (without colon).

This caused BHD torrents with tracker message like:
"Season Pack: https://beyond-hd.me/details/123456"
to NOT be detected as unregistered.

The fix removes the trailing colon from the pattern, consistent with
how "TRUMPED" (not "TRUMPED:") is already defined in the list.
2026-01-13 14:46:51 -05:00
..
core feat(tags): add support for tagging private torrents 2025-11-29 09:59:11 -05:00
__init__.py 4.5.4 (#910) 2025-08-16 22:28:26 -04:00
apprise.py 4.1.5 (#559) 2024-05-24 20:39:18 -04:00
auth.py 4.6.2 (#950) 2025-09-13 09:54:10 -04:00
config.py feat(tags): add support for tagging private torrents 2025-11-29 09:59:11 -05:00
logs.py v4.5.0 (#862) 2025-07-11 19:13:41 -04:00
notifiarr.py Adds rate limit to Notifiarr 2023-05-30 21:42:57 -04:00
qbit_error_handler.py [pre-commit.ci] auto fixes from pre-commit.com hooks 2026-01-06 17:35:48 -05:00
qbittorrent.py feat(tags): add support for tagging private torrents 2025-11-29 09:59:11 -05:00
scheduler.py 4.6.1 (#943) 2025-09-10 19:54:51 -04:00
torrent_hash_generator.py use logging in torrent_hash_generator 2023-05-22 16:16:38 -04:00
util.py Fixed: BHD 'Season Pack:' message not detected as unregistered 2026-01-13 14:46:51 -05:00
web_api.py v4.6.3 (#956) 2025-09-17 22:01:27 -04:00
webhooks.py v4.6.3 (#956) 2025-09-17 22:01:27 -04:00