add any_tags parameter to claim_search
This commit is contained in:
parent
b59fdfa1d8
commit
dddb10687c
2 changed files with 3 additions and 1 deletions
3
dist/bundle.es.js
vendored
3
dist/bundle.es.js
vendored
|
@ -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);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue