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
parent 8bc5fe204e
commit 4e420d8459

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;
}