mirror of
https://github.com/StuffAnThings/qbit_manage.git
synced 2026-01-16 13:16:15 +08:00
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.
|
||
|---|---|---|
| .. | ||
| core | ||
| __init__.py | ||
| apprise.py | ||
| auth.py | ||
| config.py | ||
| logs.py | ||
| notifiarr.py | ||
| qbit_error_handler.py | ||
| qbittorrent.py | ||
| scheduler.py | ||
| torrent_hash_generator.py | ||
| util.py | ||
| web_api.py | ||
| webhooks.py | ||