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

@ -40,10 +40,6 @@ export default {
},
isIos() {
return this.$platform === 'ios'
},
isLowFeedback() {
console.log('isLowFeedback', this.$store.state.deviceData.deviceSettings.enableLowFeedbackMode)
return this.$store.state.deviceData.deviceSettings.enableLowFeedbackMode
}
},
methods: {
@ -60,9 +56,7 @@ export default {
if (!data.localLibraryItem) {
this.$toast.error(this.$strings.MessageItemDownloadCompleteFailedToCreate)
} else {
if (!this.isLowFeedback) {
this.$toast.success(`Item "${data.localLibraryItem.media.metadata.title}" download finished`)
}
this.$toast.success(`Item "${data.localLibraryItem.media.metadata.title}" download finished`)
this.$eventBus.$emit('new-local-library-item', data.localLibraryItem)
}