mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-17 14:08:03 -06:00
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: 02892d1250 as part of #21645.
PR #23413.
This commit is contained in:
@@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user