mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
WebUI: Fix bug where the 'Tracker editing' dialog displays incorrect data
In Trackers table, moving the 'URL' column from its default (2) position caused the 'Tracker editing' dialog to display incorrect data. Steps to reproduce: 1. Move 'URL' column in Trackers table to any position from default 2. Choose tracker URL and click 'Edit tracker URL' PR #22338.
This commit is contained in:
committed by
Vladimir Golovnev (glassez)
parent
260394623d
commit
c1defceccf
@@ -196,7 +196,7 @@ window.qBittorrent.PropTrackers ??= (() => {
|
||||
if (current_hash.length === 0)
|
||||
return;
|
||||
|
||||
const trackerUrl = encodeURIComponent(element.childNodes[1].textContent);
|
||||
const trackerUrl = encodeURIComponent(torrentTrackersTable.selectedRowsIds()[0]);
|
||||
new MochaUI.Window({
|
||||
id: "trackersPage",
|
||||
icon: "images/qbittorrent-tray.svg",
|
||||
|
||||
Reference in New Issue
Block a user