claim_search --valid_channel_signatures was renamed to --valid_channel_signature

This commit is contained in:
Lex Berezhny 2019-06-24 15:40:53 -04:00
parent 2d89bdbd7f
commit 8f7e93ba7a
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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,