mirror of
https://github.com/FliegendeWurst/googleplay-api.git
synced 2024-11-22 04:44:59 +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:
|
||||
break
|
||||
if cluster.doc[0].containerMetadata.nextPageUrl != "":
|
||||
nextPath = cluster.doc[0].containerMetadata.nextPageUrl
|
||||
nextPath = FDFE + cluster.doc[0].containerMetadata.nextPageUrl
|
||||
else:
|
||||
nextPath = None
|
||||
apps = []
|
||||
|
Loading…
Reference in New Issue
Block a user