From e5b3c9c9a09d2b0c05d08db092968bfb0a99ece2 Mon Sep 17 00:00:00 2001 From: Siddharth Singh Date: Fri, 2 Aug 2024 17:06:41 +0530 Subject: [PATCH] nostr: allow view in external viewer links to appear on all posts --- src/components/status-action-bar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/status-action-bar.tsx b/src/components/status-action-bar.tsx index f4005a7b2..79471459b 100644 --- a/src/components/status-action-bar.tsx +++ b/src/components/status-action-bar.tsx @@ -430,7 +430,7 @@ const StatusActionBar: React.FC = ({ } } - if (features.federating && !account.local) { + if (features.federating) { const externalNostrUrl: string | undefined = status.ditto?.get('external_url'); const { hostname: domain } = new URL(externalNostrUrl || status.uri);