notify the user that use_mobile_ui parameter exist

This commit is contained in:
Emilien Devos 2022-06-11 17:20:56 +02:00
parent 59ef9b9287
commit 0d4c066119

View file

@ -162,6 +162,8 @@ class OnlineProcessor(EngineProcessor):
self.handle_exception(result_container, e, suspend=True)
self.logger.exception('CAPTCHA')
except SearxEngineTooManyRequestsException as e:
if "google" in self.engine_name:
self.logger.warn("We recommend enabling the use_mobile_ui parameter if google is blocked for you.")
self.handle_exception(result_container, e, suspend=True)
self.logger.exception('Too many requests')
except SearxEngineAccessDeniedException as e: