Remove commented out toasts

This commit is contained in:
advplyr
2023-12-08 17:03:08 -06:00
parent 1822b21af8
commit 84e376a7cf
4 changed files with 1 additions and 15 deletions
-6
View File
@@ -316,9 +316,6 @@ export default {
if (value) {
const res = await AbsFileSystem.deleteTrackFromItem({ id: this.localLibraryItemId, trackLocalFileId: localFile.id, trackContentUrl: localEpisodeAudioTrack.contentUrl })
if (res?.id) {
// this.$toast.success('Deleted episode successfully')
if (this.isLocal) {
// If this is local episode then redirect to server episode when available
if (this.serverEpisodeId) {
@@ -513,9 +510,6 @@ export default {
this.$nativeHttp
.delete(`/api/podcasts/${this.serverLibraryItemId}/episode/${this.serverEpisodeId}?hard=1`)
.then(() => {
//this.$toast.success('Episode deleted from server')
this.$router.replace(`/item/${this.serverLibraryItemId}`)
})
.catch((error) => {