From b9d3ecdce10b6bb52111ada6ab8444934eb344fa Mon Sep 17 00:00:00 2001 From: Kevin Date: Sat, 23 Jun 2018 00:16:04 +0200 Subject: [PATCH] FIX broken URL in api.search() that raises an exception when nb_results > 20 --- gpapi/googleplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpapi/googleplay.py b/gpapi/googleplay.py index 319a2b3..cfe9d5c 100644 --- a/gpapi/googleplay.py +++ b/gpapi/googleplay.py @@ -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 = []