From 68df6f0f586fba4c167914d2cf4383784e44f0fe Mon Sep 17 00:00:00 2001 From: 0xsysr3ll <0xsysr3ll@pm.me> Date: Mon, 30 Mar 2026 21:53:01 +0200 Subject: [PATCH] fix(settings): unify handling of Jellyfin and Emby usernames --- .../UserSettings/UserLinkedAccountsSettings/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/UserProfile/UserSettings/UserLinkedAccountsSettings/index.tsx b/src/components/UserProfile/UserSettings/UserLinkedAccountsSettings/index.tsx index c7f4f1725..a19ee3ac4 100644 --- a/src/components/UserProfile/UserSettings/UserLinkedAccountsSettings/index.tsx +++ b/src/components/UserProfile/UserSettings/UserLinkedAccountsSettings/index.tsx @@ -75,7 +75,8 @@ const UserLinkedAccountsSettings = () => { type: LinkedAccountType.Plex, username: user.plexUsername, }); - // Jellyfin and Emby both store the linked username in jellyfinUsername + // Jellyfin and Emby both store the linked username in jellyfinUsername; do + // not gate on user.userType or LOCAL/Plex users with a linked server stay hidden. if (user.jellyfinUsername) { const treatAsEmby = user.userType === UserType.EMBY ||