From 35dced8eaf97d58c43bc849c8afebed17dea97b1 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 26 Oct 2023 17:39:10 +0800 Subject: [PATCH] Disable search results pagination if not authenticated --- src/pages/search.jsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pages/search.jsx b/src/pages/search.jsx index 0ac45288..25a9739a 100644 --- a/src/pages/search.jsx +++ b/src/pages/search.jsx @@ -71,6 +71,11 @@ function Search(props) { }; function loadResults(firstLoad) { + if (!firstLoad && !authenticated) { + // Search results pagination is only available to authenticated users + return; + } + setUIState('loading'); if (firstLoad && !type) { setStatusResults(statusResults.slice(0, SHORT_LIMIT)); @@ -89,6 +94,7 @@ function Search(props) { params.type = type; if (authenticated) params.offset = offsetRef.current; } + try { const results = await masto.v2.search.fetch(params); console.log(results);