summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/engines/google_play.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/engines/google_play.py b/searx/engines/google_play.py
index 45a3fdb69..a9cfd1a76 100644
--- a/searx/engines/google_play.py
+++ b/searx/engines/google_play.py
@@ -48,7 +48,8 @@ def response(resp):
return response_movies(resp)
if play_categ == 'apps':
return response_apps(resp)
- return []
+
+ raise ValueError(f"Unsupported play category: {play_categ}")
def response_movies(resp):