From 5fe67624178200b1a603364b1d3fb1312e474e25 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 13 Jan 2026 15:42:10 +0000 Subject: [PATCH] Fix: Don't show fallback servers when not logged in Blossom uploads require signed auth events, so users must be logged in. The 'Account required' message is already shown in this case. --- src/components/BlossomUploadDialog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/BlossomUploadDialog.tsx b/src/components/BlossomUploadDialog.tsx index c15dc59..4e27607 100644 --- a/src/components/BlossomUploadDialog.tsx +++ b/src/components/BlossomUploadDialog.tsx @@ -124,9 +124,9 @@ export function BlossomUploadDialog({ return; } - // If no pubkey (not logged in), use fallback servers + // If no pubkey (not logged in), can't upload - auth required if (!pubkey) { - useFallbackServers(); + setLoadingServers(false); return; }