Fixed
- qBittorrent v5.x login now works (#616, #623) — qBit 5.0 introduced two breaking changes to
/api/v2/auth/loginthat v1.9.4 and earlier didn't handle: (1) CSRF protection requires matchingOriginandRefererheaders (without them, login is silently rejected — the empty-body 403 that v1.9.4 surfaced as an IP-ban hint); (2) successful login returns204 No Contentinstead of200 OK+ bodyOk.. Bindery now sends both headers on every login request (v4.x ignores them, so the change is version-safe) and accepts204as success alongside the v4.x200. Original fix and tests authored by @statte.