From 0036a19659a1f8b7ee75a5a3365d1d53153c8aa4 Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 21 Nov 2023 10:55:26 -0600 Subject: [PATCH] Fix:Downloaded item server user id mismatch alert to support connections with old user id #945 --- pages/item/_id/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/item/_id/index.vue b/pages/item/_id/index.vue index 17686d30..b1bf10e8 100644 --- a/pages/item/_id/index.vue +++ b/pages/item/_id/index.vue @@ -272,7 +272,7 @@ export default { */ isLocalMatchingUser() { if (this.isLocalOnly || !this.localLibraryItem || !this.user) return false - return this.localLibraryItem.serverUserId === this.user.id + return this.localLibraryItem.serverUserId === this.user.id || this.localLibraryItem.serverUserId === this.user.oldUserId }, /** * User is currently connected to a server and this local library item has the same connection config id