forked from LBRYCommunity/lbry-sdk
explicitly convert page and page_size to int
This commit is contained in:
parent
570c1163c1
commit
91405ef232
1 changed files with 2 additions and 0 deletions
|
@ -2651,6 +2651,8 @@ class Daemon(AuthJSONRPCServer):
|
|||
"""
|
||||
|
||||
uris = tuple(uris)
|
||||
page = int(page)
|
||||
page_size = int(page_size)
|
||||
if uri is not None:
|
||||
uris += (uri,)
|
||||
|
||||
|
|
Loading…
Reference in a new issue