Removes low feedback toggle

This commit is contained in:
Tony Edwards 2023-12-08 07:15:14 +00:00
parent 78448894d2
commit 9a32396daa
8 changed files with 37 additions and 91 deletions

View file

@ -158,9 +158,6 @@ export default {
},
podcast() {
return this.episode.podcast || {}
},
isLowFeedback() {
return this.$store.state.deviceData.deviceSettings.enableLowFeedbackMode
}
},
methods: {
@ -219,18 +216,14 @@ export default {
console.log('Local folder', JSON.stringify(localFolder))
if (this.isLowFeedback) {
var 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 {
var 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 startDownload(localFolder) {
var payload = {