qbittorrent / qBittorrent

qBittorrent BitTorrent client
https://www.qbittorrent.org
Other
28.47k stars 3.99k forks source link

WebUI: Fix reloading page after login #21832

Closed eryshkov closed 3 days ago

eryshkov commented 1 week ago

The page isn't reloading after login

Chocobo1 commented 1 week ago

What browser are you using? Also see this: https://github.com/qbittorrent/qBittorrent/pull/20442

eryshkov commented 1 week ago

What browser are you using? Also see this: #20442

I use Google Chrome 131.0.6778.33. And Apple Safari 17. All these browsers didn't redirect after successfull login

eryshkov commented 1 week ago

What browser are you using? Also see this: #20442

location.replace(url); url must be string, but object "location" used. Present code is wrong. It will not work in any browser.

Documentation tells it: https://developer.mozilla.org/en-US/docs/Web/API/Location/replace

eryshkov commented 1 week ago

What browser are you using? Also see this: #20442

location.reload() is the best problem solution: https://developer.mozilla.org/en-US/docs/Web/API/Location/reload

Chocobo1 commented 3 days ago

@eryshkov Thank you!