Removes low feedback toggle

This commit is contained in:
Tony Edwards
2023-12-08 07:19:23 +00:00
parent 78448894d2
commit 9a32396daa
8 changed files with 37 additions and 91 deletions
+6 -10
View File
@@ -398,17 +398,13 @@ export default {
console.log('Local folder', JSON.stringify(localFolder))
if (this.isLowFeedback) {
const startDownloadMessage = `Start download for "${this.title}" to folder ${localFolder.name}?`
const { value } = await Dialog.confirm({
title: 'Confirm',
message: startDownloadMessage
})
if (value) {
this.startDownload(localFolder)
} else {
const startDownloadMessage = `Start download for "${this.title}" to folder ${localFolder.name}?`
const { value } = await Dialog.confirm({
title: 'Confirm',
message: startDownloadMessage
})
if (value) {
this.startDownload(localFolder)
}
}
},
async selectFolder() {