Skip to content

Commit e5026e4

Browse files
authored
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: 02892d1 as part of #21645. PR #23413.
1 parent f7fbd61 commit e5026e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/webui/www/private/scripts/dynamicTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3245,7 +3245,7 @@ window.qBittorrent.DynamicTable ??= (() => {
32453245
if (!tr)
32463246
return;
32473247

3248-
const { name, torrentURL } = this._this.rows.get(this.rowId).full_data;
3248+
const { name, torrentURL } = this.getRow(tr.rowId).full_data;
32493249
qBittorrent.Client.createAddTorrentWindow(name, torrentURL);
32503250
});
32513251
}

0 commit comments

Comments
 (0)