Skip to content

Commit

Permalink
🐛 禁用Biliplus的cookie可还行,改!
Browse files Browse the repository at this point in the history
  • Loading branch information
shadlc committed Dec 4, 2023
1 parent 0defa1d commit 4b4a486
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/SettingUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ def init_cookie(self, mainGUI: MainGUI) -> None:
stored_cookie = mainGUI.getConfig("cookie")
if stored_cookie:
mainGUI.lineEdit_my_cookie.setText(stored_cookie)
mainGUI.lineEdit_biliplus_cookie.setEnabled(False)
mainGUI.pushButton_biliplus_cookie.setEnabled(False)
mainGUI.lineEdit_my_cookie.setEnabled(False)
mainGUI.pushButton_my_cookie.setEnabled(False)
threading.Thread(
target=self.check_cookie_valid,
args=(mainGUI, stored_cookie),
Expand Down

0 comments on commit 4b4a486

Please sign in to comment.