mirror of
https://github.com/FliegendeWurst/googleplay-api.git
synced 2024-11-22 12:54:58 +00:00
Merge pull request #57 from kallix/FIX-api.search
FIX broken URL in api.search() that raises an exception when nb_result >20
This commit is contained in:
commit
118b539cbc
@ -350,7 +350,7 @@ class GooglePlayAPI(object):
|
|||||||
if len(cluster.doc) == 0:
|
if len(cluster.doc) == 0:
|
||||||
break
|
break
|
||||||
if cluster.doc[0].containerMetadata.nextPageUrl != "":
|
if cluster.doc[0].containerMetadata.nextPageUrl != "":
|
||||||
nextPath = cluster.doc[0].containerMetadata.nextPageUrl
|
nextPath = FDFE + cluster.doc[0].containerMetadata.nextPageUrl
|
||||||
else:
|
else:
|
||||||
nextPath = None
|
nextPath = None
|
||||||
apps = []
|
apps = []
|
||||||
|
Loading…
Reference in New Issue
Block a user