From 5506026fd4110f161de65827c608bc195cf8e71a Mon Sep 17 00:00:00 2001 From: Tiberiu Ichim Date: Sun, 22 Feb 2026 20:16:51 +0200 Subject: [PATCH] Fix: switch to current library view instead of target library when moving --- client/components/modals/item/MoveToLibraryModal.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/components/modals/item/MoveToLibraryModal.vue b/client/components/modals/item/MoveToLibraryModal.vue index a5d8aa18b..f7001b72c 100644 --- a/client/components/modals/item/MoveToLibraryModal.vue +++ b/client/components/modals/item/MoveToLibraryModal.vue @@ -211,7 +211,7 @@ export default { // Clear selection after batch move this.$store.commit('globals/resetSelectedMediaItems') if (response.successCount > 0) { - this.$router.push(`/library/${this.selectedLibraryId}`) + this.$router.push(`/library/${this.currentLibraryId}`) } } else { // Single item move @@ -219,7 +219,7 @@ export default { if (response.success) { this.$toast.success(this.$strings.ToastItemMoved) this.$store.commit('setSelectedLibraryItem', null) - this.$router.push(`/library/${this.selectedLibraryId}`) + this.$router.push(`/library/${this.currentLibraryId}`) } } this.show = false