From 91965246dcb06161a4e99d8d39b0f1187b5c2b98 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Mon, 26 Aug 2019 18:55:39 -0400 Subject: [PATCH] fix subscription urls --- src/ui/redux/actions/content.js | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/ui/redux/actions/content.js b/src/ui/redux/actions/content.js index 9474b3944..74fdf8a22 100644 --- a/src/ui/redux/actions/content.js +++ b/src/ui/redux/actions/content.js @@ -155,15 +155,9 @@ export function doFetchClaimsByChannel(uri: string, page: number = 1, pageSize: setSubscriptionLatest( { channelName: latest.channel_name, - uri: buildURI( - { - contentName: latest.channel_name, - claimId: latest.claim_id, - }, - false - ), + uri: latest.signing_channel.canonical_url, }, - buildURI({ contentName: latest.name, claimId: latest.claim_id }, false) + buildURI({ streamName: latest.name, streamClaimId: latest.claim_id }, false) ) ); }