From 8f7e93ba7a65059f0d99804b336c509f845c87b2 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 24 Jun 2019 15:40:53 -0400 Subject: [PATCH] claim_search --valid_channel_signatures was renamed to --valid_channel_signature --- src/ui/redux/actions/content.js | 2 +- src/ui/redux/actions/subscriptions.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ui/redux/actions/content.js b/src/ui/redux/actions/content.js index f971fb322..6aa58fc80 100644 --- a/src/ui/redux/actions/content.js +++ b/src/ui/redux/actions/content.js @@ -296,7 +296,7 @@ export function doFetchClaimsByChannel(uri: string, page: number = 1, pageSize: channel: uri, page, page_size: pageSize, - valid_channel_signatures: true, + valid_channel_signature: true, order_by: ['release_time'], }).then(result => { const { items: claimsInChannel, page: returnedPage } = result; diff --git a/src/ui/redux/actions/subscriptions.js b/src/ui/redux/actions/subscriptions.js index 8347de765..d1626f9b8 100644 --- a/src/ui/redux/actions/subscriptions.js +++ b/src/ui/redux/actions/subscriptions.js @@ -206,7 +206,7 @@ export const doCheckSubscription = (subscriptionUri: string, shouldNotify?: bool // We may be duplicating calls here. Can this logic be baked into doFetchClaimsByChannel? Lbry.claim_search({ channel: subscriptionUri, - valid_channel_signatures: true, + valid_channel_signature: true, order_by: ['release_time'], page: 1, page_size: PAGE_SIZE, -- 2.45.2