1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 23:07:59 +00:00

WebUI: improve 'exporting torrent' behavior

Don't stop the whole operation when a torrent doesn't exists and try to export the remaining
existing ones.

PR #18858.
This commit is contained in:
Chocobo1 2023-04-18 13:59:55 +08:00 committed by GitHub
parent 51132c817b
commit 7397c80837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1009,7 +1009,7 @@ const initializeWindows = function() {
for (const hash of hashes) {
const row = torrentsTable.rows.get(hash);
if (!row)
return;
continue;
const name = row.full_data.name;
const url = new URI("api/v2/torrents/export");
@ -1018,7 +1018,7 @@ const initializeWindows = function() {
// download response to file
const element = document.createElement("a");
element.setAttribute("href", url);
element.setAttribute("download", name + ".torrent");
element.setAttribute("download", (name + ".torrent"));
document.body.appendChild(element);
element.click();
document.body.removeChild(element);