Merge pull request #618 from rdiaz738/master

Fix issue with import not respecting selected quality profile and dropdown menu
This commit is contained in:
Alex 2025-03-25 22:22:54 +02:00 committed by GitHub
commit f0e388835b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -350,15 +350,22 @@ export class AppComponent implements AfterViewInit {
} }
const url = urls[index]; const url = urls[index];
this.batchImportStatus = `Importing URL ${index + 1} of ${urls.length}: ${url}`; this.batchImportStatus = `Importing URL ${index + 1} of ${urls.length}: ${url}`;
this.downloads.addDownloadByUrl(url) // Now pass the selected quality, format, folder, etc. to the add() method
.then(() => { this.downloads.add(url, this.quality, this.format, this.folder, this.customNamePrefix,
index++; this.playlistStrictMode, this.playlistItemLimit, this.autoStart)
setTimeout(processNext, delayBetween); .subscribe({
}) next: (status: Status) => {
.catch(err => { if (status.status === 'error') {
console.error(`Error importing URL ${url}:`, err); alert(`Error adding URL ${url}: ${status.msg}`);
index++; }
setTimeout(processNext, delayBetween); index++;
setTimeout(processNext, delayBetween);
},
error: (err) => {
console.error(`Error importing URL ${url}:`, err);
index++;
setTimeout(processNext, delayBetween);
}
}); });
}; };
processNext(); processNext();