Skip to content

Commit

Permalink
chore(qbittorrent): update qbittorrent-api to version 2024.11.69
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinityPacer committed Nov 17, 2024
1 parent d7c8b08 commit a0f912f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/modules/qbittorrent/qbittorrent.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __login_qbittorrent(self) -> Optional[Client]:
try:
qbt.auth_log_in()
except (qbittorrentapi.LoginFailed, qbittorrentapi.Forbidden403Error) as e:
logger.error(f"qbittorrent 登录失败:{str(e)}")
logger.error(f"qbittorrent 登录失败:{str(e).strip() or '请检查用户名和密码是否正确'}")
return None
except Exception as e:
stack_trace = "".join(traceback.format_exception(None, e, e.__traceback__))[:2000]
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ APScheduler~=3.10.1
cryptography~=43.0.0
pytz~=2023.3
pycryptodome~=3.20.0
qbittorrent-api==2024.9.67
qbittorrent-api==2024.11.69
plexapi~=4.15.16
transmission-rpc~=4.3.0
Jinja2~=3.1.4
Expand Down

0 comments on commit a0f912f

Please sign in to comment.