From e5026e4b19b5c37a33dfdb7877ef7effcc4822be Mon Sep 17 00:00:00 2001 From: dyseg <56411306+dyseg@users.noreply.github.com> Date: Sun, 26 Oct 2025 15:12:36 +0100 Subject: [PATCH] WebUI: fix opening "Add torrent" window with double click on RSS feed item Restores the ability to open the "Add torrent" dialogue, when double clicking on an RSS feed item. Broke in: 02892d12501e9ba96cb5a0375da42d447bc5ece2 as part of #21645. PR #23413. --- src/webui/www/private/scripts/dynamicTable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/www/private/scripts/dynamicTable.js b/src/webui/www/private/scripts/dynamicTable.js index 13480ab24..8d075490e 100644 --- a/src/webui/www/private/scripts/dynamicTable.js +++ b/src/webui/www/private/scripts/dynamicTable.js @@ -3245,7 +3245,7 @@ window.qBittorrent.DynamicTable ??= (() => { if (!tr) return; - const { name, torrentURL } = this._this.rows.get(this.rowId).full_data; + const { name, torrentURL } = this.getRow(tr.rowId).full_data; qBittorrent.Client.createAddTorrentWindow(name, torrentURL); }); }