~cytrogen/masto-fe

1da3c588ca19d66df1871d6616bde32192eed4b5 — Claire 2 years ago 686406c
Fix link handling of mentions in user profiles when logged out (#27185)

1 files changed, 4 insertions(+), 0 deletions(-)

M app/javascript/mastodon/actions/search.js
M app/javascript/mastodon/actions/search.js => app/javascript/mastodon/actions/search.js +4 -0
@@ 147,6 147,10 @@ export const openURL = (value, history, onFailure) => (dispatch, getState) => {
  const signedIn = !!getState().getIn(['meta', 'me']);

  if (!signedIn) {
    if (onFailure) {
      onFailure();
    }

    return;
  }