Skip to content

Commit

Permalink
Empty list.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruvg committed Feb 16, 2023
1 parent bce6ebf commit 073d6d9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion google_play_scraper/constants/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def fallback_build(self, query: str, lang: str) -> str:
def build_body(self, *args):
return None


Detail = _Detail()
Reviews = _Reviews()
Permissions = _Permissions()
Expand Down
2 changes: 1 addition & 1 deletion google_play_scraper/features/reviews.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def _fetch_review_items(
else:
token = json.loads(match[0][2])[-1][-1]

return json.loads(match[0][2])[0], token
return json.loads(match[0][2])[0] or [], token


def reviews(
Expand Down

0 comments on commit 073d6d9

Please sign in to comment.