diff --git a/metager/app/Http/Controllers/TilesController.php b/metager/app/Http/Controllers/TilesController.php index 0f6ced47c0375e26a5064bf569fccd4e252716ed..c3b395a7a7ef32416968be9f59338c95092008de 100644 --- a/metager/app/Http/Controllers/TilesController.php +++ b/metager/app/Http/Controllers/TilesController.php @@ -112,6 +112,10 @@ class TilesController extends Controller private static function TAKE_TILES(string $ckey, int $count): array { $tiles = []; + + // Check if the user has disabled tiles => Allow disabling the ads on the startpage for now aswell + if (!app(SearchSettings::class)->tiles_startpage) + return $tiles; $cc = Localization::getRegion(); $result_cache_key = "taketiles:fetch:$ckey:$cc:$count";