diff --git a/components/modals/ItemMoreMenuModal.vue b/components/modals/ItemMoreMenuModal.vue index d2886f3c..319598bc 100644 --- a/components/modals/ItemMoreMenuModal.vue +++ b/components/modals/ItemMoreMenuModal.vue @@ -388,7 +388,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) { @@ -414,7 +413,6 @@ export default { if (value) { const res = await AbsFileSystem.deleteItem(this.localLibraryItem) if (res?.success) { - this.$toast.success('Deleted successfully') if (this.isLocal) { // If local then redirect to server version when available if (this.serverLibraryItemId) { diff --git a/components/tables/podcast/EpisodeRow.vue b/components/tables/podcast/EpisodeRow.vue index fa688fba..36312d13 100644 --- a/components/tables/podcast/EpisodeRow.vue +++ b/components/tables/podcast/EpisodeRow.vue @@ -58,7 +58,6 @@ \ No newline at end of file diff --git a/pages/item/_id/_episode/index.vue b/pages/item/_id/_episode/index.vue index 9baa81f3..611b3f16 100644 --- a/pages/item/_id/_episode/index.vue +++ b/pages/item/_id/_episode/index.vue @@ -316,7 +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) { @@ -398,14 +397,7 @@ export default { console.log('Local folder', JSON.stringify(localFolder)) - 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) - } + this.startDownload(localFolder) }, async selectFolder() { const folderObj = await AbsFileSystem.selectFolder({ mediaType: this.mediaType }) @@ -518,7 +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) => { diff --git a/pages/item/_id/index.vue b/pages/item/_id/index.vue index 26829c7b..8a65cda5 100644 --- a/pages/item/_id/index.vue +++ b/pages/item/_id/index.vue @@ -40,12 +40,6 @@

Media is linked to a different server connection config. Downloaded User Id: {{ localLibraryItem.serverUserId }}. Downloaded Server Address: {{ localLibraryItem.serverAddress }}. Currently connected User Id: {{ user.id }}. Currently connected server address: {{ currentServerAddress }}.

-
-

{{ $strings.MessageMediaLinkedToThisServer }}

-
-
-

{{ $getString('MessageMediaLinkedToServer', [libraryItem.serverAddress]) }}

-
@@ -615,7 +609,6 @@ export default { } console.log('Local folder', JSON.stringify(localFolder)) - let startDownloadMessage = `Start download for "${this.title}" with ${this.numTracks} audio track${this.numTracks == 1 ? '' : 's'} to folder ${localFolder.name}?` if (!this.isIos && this.showRead) { if (this.numTracks > 0) {