diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php
index 37c02ff54cdb1f03f1d0b84d48ec599ee142f5cd..29064e49c4329df4a147dcf2dde4ce81090b7e54 100644
--- a/app/Http/Controllers/SearchController.php
+++ b/app/Http/Controllers/SearchController.php
@@ -13,7 +13,7 @@ class SearchController extends Controller
     public function search($search)
     {
         $link          = "https://maps.metager.de/nominatim/search.php?q=" . urlencode($search) . "&limit=10&polygon_geojson=1&format=json&extratags=1&addressdetails=1";
-        $searchResults = $this->makeSearch($link);
+        $searchResults = $this->makeSearch($link, true);
         return $searchResults;
     }