mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-07-12 23:14:48 +02:00
Adds low feedback mode to podcast downloads
This commit is contained in:
parent
e6c1874cbb
commit
aca348e783
3 changed files with 24 additions and 8 deletions
|
@ -219,7 +219,7 @@ export default {
|
|||
|
||||
console.log('Local folder', JSON.stringify(localFolder))
|
||||
|
||||
if (isLowFeedback) {
|
||||
if (this.isLowFeedback) {
|
||||
this.startDownload(localFolder)
|
||||
} else {
|
||||
var startDownloadMessage = `Start download for "${this.title}" to folder ${localFolder.name}?`
|
||||
|
@ -245,6 +245,8 @@ export default {
|
|||
var errorMsg = downloadRes.error || 'Unknown error'
|
||||
console.error('Download error', errorMsg)
|
||||
this.$toast.error(errorMsg)
|
||||
} else {
|
||||
console.log('Download completed', JSON.stringify(downloadRes))
|
||||
}
|
||||
},
|
||||
async playClick() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue