use permanent url instead of uri

This ensures that when clicking on the notification, it goes to the correct URL. Before it could have been a different vanity URL.
This commit is contained in:
Thomas Zarebczan 2018-08-27 16:36:11 -04:00
parent b483e3f0d6
commit babeccbf6c

View file

@ -284,7 +284,7 @@ export const doCheckPendingPublishes = () => (dispatch: Dispatch, getState: GetS
notif.onclick = () => {
dispatch(
doNavigate('/show', {
uri: claim.name,
uri: claim.permanent_url,
})
);
};