Fix clicking on a profile mention while logged out potentially leading to incorrect account (#33324)

This commit is contained in:
Claire 2024-12-16 20:29:51 +01:00 committed by GitHub
parent efe4e72f93
commit a837f7d693
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -79,15 +79,12 @@ export const expandSearch = createDataLoadingThunk(
export const openURL = createDataLoadingThunk(
'search/openURL',
({ url }: { url: string }, { getState }) => {
const signedIn = !!getState().meta.get('me');
return apiGetSearch({
({ url }: { url: string }) =>
apiGetSearch({
q: url,
resolve: signedIn,
resolve: true,
limit: 1,
});
},
}),
(data, { dispatch }) => {
if (data.accounts.length > 0) {
dispatch(importFetchedAccounts(data.accounts));