From b2beca157190aa842ef9c8b9dd6b88c23eb0f8b2 Mon Sep 17 00:00:00 2001 From: Dominik Hebeler <dominik@hebeler.club> Date: Sun, 14 Jan 2024 21:27:06 +0100 Subject: [PATCH] Add rate limit for yandex --- metager/app/Models/parserSkripte/Yandex.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/metager/app/Models/parserSkripte/Yandex.php b/metager/app/Models/parserSkripte/Yandex.php index 1668cdb34..743e6471a 100644 --- a/metager/app/Models/parserSkripte/Yandex.php +++ b/metager/app/Models/parserSkripte/Yandex.php @@ -12,6 +12,8 @@ class Yandex extends Searchengine public function __construct($name, SearchengineConfiguration $configuration) { + $configuration->monthlyRequests = 6000000; // Rate Limit Yandex searches to 6 Mio + parent::__construct($name, $configuration); } -- GitLab