From babeccbf6c7f8f55cd18afb047ddd8d36bfcc793 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 27 Aug 2018 16:36:11 -0400 Subject: [PATCH] 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. --- src/renderer/redux/actions/publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/redux/actions/publish.js b/src/renderer/redux/actions/publish.js index 1ab5dcab6..65d44dd75 100644 --- a/src/renderer/redux/actions/publish.js +++ b/src/renderer/redux/actions/publish.js @@ -284,7 +284,7 @@ export const doCheckPendingPublishes = () => (dispatch: Dispatch, getState: GetS notif.onclick = () => { dispatch( doNavigate('/show', { - uri: claim.name, + uri: claim.permanent_url, }) ); };