Merge pull request #150 from lbryio/fix-claim-search

fix:  claim search
This commit is contained in:
Akinwale Ariwodola 2019-05-27 14:58:53 +01:00 committed by GitHub
commit 98d6922e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

4
dist/bundle.es.js vendored
View file

@ -2093,9 +2093,7 @@ function doFetchClaimsByChannel(uri, page = 1) {
data: { uri, page }
});
const { claimId } = parseURI(uri);
lbryProxy.claim_search({ channel_id: claimId, page: page || 1 }).then(result => {
lbryProxy.claim_search({ channel_name: uri, page: page || 1, winning: true }).then(result => {
const { items: claimsInChannel, page: returnedPage } = result;
dispatch({

View file

@ -182,9 +182,7 @@ export function doFetchClaimsByChannel(uri: string, page: number = 1) {
data: { uri, page },
});
const { claimId } = parseURI(uri);
Lbry.claim_search({ channel_id: claimId, page: page || 1 }).then(
Lbry.claim_search({ channel_name: uri, page: page || 1, winning: true }).then(
(result: ClaimSearchResponse) => {
const { items: claimsInChannel, page: returnedPage } = result;