add any_tags parameter to claim_search

This commit is contained in:
Akinwale Ariwodola 2019-07-15 04:22:52 +01:00
parent b59fdfa1d8
commit dddb10687c
2 changed files with 3 additions and 1 deletions

3
dist/bundle.es.js vendored
View file

@ -2382,7 +2382,8 @@ function doClaimSearchByTags(tags, amount = 10, options = {}) {
};
lbryProxy.claim_search(_extends$3({
page_size: amount
page_size: amount,
any_tags: tags
}, options)).then(success, failure);
};
}

View file

@ -366,6 +366,7 @@ export function doClaimSearchByTags(tags: Array<string>, amount: number = 10, op
Lbry.claim_search({
page_size: amount,
any_tags: tags,
...options,
}).then(success, failure);
};