Webui broken in latest master? #11878

Closed
opened 2026-02-21 22:03:20 -05:00 by deekerman · 0 comments
Owner

Originally created by @trippleflux on GitHub (Mar 23, 2021).

qBittorrent version and Operating System

qBittorrent v4.4.0alpha1 latest current master branch, Windows 10 x64

If on linux, libtorrent-rasterbar and Qt version

libtorrent 2.0.3.0, QT 5.15.3

What is the problem

Webui is broken because of extra parenthesis in ..\qBittorrent\src\webui\www\private\scripts\dynamicTable.js line 1106

What is the expected behavior

Webui able to load properly.

Steps to reproduce

Compile latest qBittorrent master branch, load the webui in the browser.

Extra info(if any)

delete the one extra parenthesis in line 1106 of ..\qBittorrent\src\webui\www\private\scripts\dynamicTable.js .
Current :

const eta = window.qBittorrent.Misc.friendlyDuration(this.getRowValue(row), window.qBittorrent.Misc.MAX_ETA));

Fixed / correct one

const eta = window.qBittorrent.Misc.friendlyDuration(this.getRowValue(row), window.qBittorrent.Misc.MAX_ETA);

and recompile qBittorrent

Originally created by @trippleflux on GitHub (Mar 23, 2021). ### qBittorrent version and Operating System qBittorrent v4.4.0alpha1 latest current master branch, Windows 10 x64 ### If on linux, libtorrent-rasterbar and Qt version libtorrent 2.0.3.0, QT 5.15.3 ### What is the problem Webui is broken because of extra parenthesis in ..\qBittorrent\src\webui\www\private\scripts\dynamicTable.js line 1106 ### What is the expected behavior Webui able to load properly. ### Steps to reproduce Compile latest qBittorrent master branch, load the webui in the browser. ### Extra info(if any) delete the one extra parenthesis in line 1106 of ..\qBittorrent\src\webui\www\private\scripts\dynamicTable.js . Current : ``` const eta = window.qBittorrent.Misc.friendlyDuration(this.getRowValue(row), window.qBittorrent.Misc.MAX_ETA)); ``` Fixed / correct one ``` const eta = window.qBittorrent.Misc.friendlyDuration(this.getRowValue(row), window.qBittorrent.Misc.MAX_ETA); ``` and recompile qBittorrent
deekerman 2026-02-21 22:03:20 -05:00
  • closed this issue
  • added the
    WebUI
    label
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/qBittorrent#11878
No description provided.