From fda1849882aceabdedc099287dd661deeac77330 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Tue, 28 May 2024 16:54:55 +0200 Subject: [PATCH] Revert "Don't fetch soapbox.json if frontend_configurations is available" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit e1de76ae011d97ebfb47f42795cd4ed9a416069c. Signed-off-by: marcin mikołajczak --- src/actions/soapbox.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/actions/soapbox.ts b/src/actions/soapbox.ts index 58c4a66fc..79b0b7101 100644 --- a/src/actions/soapbox.ts +++ b/src/actions/soapbox.ts @@ -64,6 +64,8 @@ const fetchSoapboxConfig = (host: string | null) => if (data.pl_fe) { dispatch(importSoapboxConfig(data.pl_fe, host)); return data.pl_fe; + } else { + return dispatch(fetchSoapboxJson(host)); } }); } else {