0.10.2-10 DVD Title Scan

This commit is contained in:
2026-03-16 11:05:38 +00:00
parent 38a82706ce
commit 901b8a0b61
14 changed files with 482 additions and 99 deletions
+7 -1
View File
@@ -706,7 +706,13 @@ export const api = {
return request('/downloads/summary');
},
downloadPreparedArchive(downloadId) {
return download(`/downloads/${encodeURIComponent(downloadId)}/file`);
const link = document.createElement('a');
link.href = `${API_BASE}/downloads/${encodeURIComponent(downloadId)}/file`;
link.download = '';
document.body.appendChild(link);
link.click();
link.remove();
return Promise.resolve();
},
deleteDownload(downloadId) {
return request(`/downloads/${encodeURIComponent(downloadId)}`, {