Fix link handling of mentions in user profiles when logged out (#27185)

This commit is contained in:
Claire 2023-09-28 15:29:07 +02:00 committed by GitHub
parent 686406cc2d
commit 1da3c588ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -147,6 +147,10 @@ export const openURL = (value, history, onFailure) => (dispatch, getState) => {
const signedIn = !!getState().getIn(['meta', 'me']);
if (!signedIn) {
if (onFailure) {
onFailure();
}
return;
}