[Glitch] Fix logged out search and changed logged-in search placeholder

Port 55af04b253 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
Eugen Rochko
2022-10-29 13:32:49 +02:00
committed by Claire
parent eee36267d6
commit eb307ec1bd
2 changed files with 7 additions and 3 deletions

View File

@@ -29,7 +29,8 @@ export function clearSearch() {
export function submitSearch() {
return (dispatch, getState) => {
const value = getState().getIn(['search', 'value']);
const value = getState().getIn(['search', 'value']);
const signedIn = !!getState().getIn(['meta', 'me']);
if (value.length === 0) {
dispatch(fetchSearchSuccess({ accounts: [], statuses: [], hashtags: [] }, ''));
@@ -41,7 +42,7 @@ export function submitSearch() {
api(getState).get('/api/v2/search', {
params: {
q: value,
resolve: true,
resolve: signedIn,
limit: 10,
},
}).then(response => {