From 65d90947c59b3bcf24bfc818155bde9edcf8870b Mon Sep 17 00:00:00 2001 From: advplyr Date: Mon, 4 Mar 2024 14:56:58 -0600 Subject: [PATCH] Fix:Remove from playlist button #987 --- components/modals/ItemMoreMenuModal.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/modals/ItemMoreMenuModal.vue b/components/modals/ItemMoreMenuModal.vue index 87a3a993..bf46c092 100644 --- a/components/modals/ItemMoreMenuModal.vue +++ b/components/modals/ItemMoreMenuModal.vue @@ -481,8 +481,8 @@ export default { this.$emit('update:processing', true) let url = `/api/playlists/${this.playlist.id}/item/${this.serverLibraryItemId}` if (this.serverEpisodeId) url += `/${this.serverEpisodeId}` - this.$axios - .$delete(url) + this.$nativeHttp + .delete(url) .then(() => { this.$toast.success('Item removed from playlist') })