Final bug fixes

This commit is contained in:
Mukhtar Akere
2025-08-09 19:57:32 +01:00
parent 3aeb806033
commit 0dd1efb07c
10 changed files with 21 additions and 42 deletions

File diff suppressed because one or more lines are too long

View File

@@ -166,13 +166,10 @@ class DownloadManager {
// Create a modal or detailed view for errors
const errorList = errors.map(error => `${error}`).join('\n');
console.error('Download errors:', errorList);
// You could also show this in a modal for better UX
setTimeout(() => {
if (confirm('Some torrents failed to add. Would you like to see the details?')) {
alert(errorList);
}
}, 1000);
window.decypharrUtils.createToast(
`Errors occurred while adding torrents:\n${errorList}`,
'error'
);
}
clearForm() {