From 3e5f9162c8522b6bc912eb079f35c43be19411cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?marcin=20miko=C5=82ajczak?= Date: Wed, 3 Nov 2021 08:43:00 +0100 Subject: [PATCH] Fix search results MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: marcin mikołajczak --- app/soapbox/reducers/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/soapbox/reducers/search.js b/app/soapbox/reducers/search.js index 009fc3673..47aa9f00b 100644 --- a/app/soapbox/reducers/search.js +++ b/app/soapbox/reducers/search.js @@ -46,7 +46,7 @@ const importResults = (state, results) => { return state.withMutations(state => { state.set('results', ImmutableMap({ accounts: toIds(results.accounts), - statuses: toIds(results.accounts), + statuses: toIds(results.statuses), hashtags: fromJS(results.hashtags), // it's a list of maps accountsHasMore: results.accounts.length >= 20, statusesHasMore: results.statuses.length >= 20,