From 0a4052dec2d7997aa10bfea200cc505651ee2e98 Mon Sep 17 00:00:00 2001 From: advplyr Date: Mon, 30 Jan 2023 07:57:34 -0600 Subject: [PATCH] Fix manage local files redirect on iOS --- pages/item/_id/index.vue | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/pages/item/_id/index.vue b/pages/item/_id/index.vue index ae6b89f5..dd2cb843 100644 --- a/pages/item/_id/index.vue +++ b/pages/item/_id/index.vue @@ -18,19 +18,17 @@

{{ subtitle }}

- +

by {{ podcastAuthor }}

by - +

@@ -88,21 +86,17 @@
Narrators
Published
-
- {{ publishedYear }} -
+
{{ publishedYear }}
Genres
@@ -131,7 +125,7 @@ - + @@ -433,7 +427,9 @@ export default { moreMenuAction(action) { this.showMoreMenu = false if (action === 'manageLocal') { - this.$router.push(`/localMedia/item/${this.localLibraryItemId}`) + this.$nextTick(() => { + this.$router.push(`/localMedia/item/${this.localLibraryItemId}`) + }) } else if (action === 'details') { this.showDetailsModal = true } else if (action === 'playlist') {