From f650d3b1b3760d8c0d6a235a6007b8c487bc5652 Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Wed, 19 Nov 2025 15:05:17 +0100 Subject: [PATCH] Revert "[stable31] fix: Disable ReverseGeoCoderService when the server has no internet" --- lib/Service/ReverseGeoCoderService.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/Service/ReverseGeoCoderService.php b/lib/Service/ReverseGeoCoderService.php index 41099c46d2..da48688a72 100644 --- a/lib/Service/ReverseGeoCoderService.php +++ b/lib/Service/ReverseGeoCoderService.php @@ -68,10 +68,6 @@ private function getPlaceNameForPlaceId(int $placeId): string { } public function arePlacesEnabled(): bool { - if (!$this->config->getSystemValueBool('has_internet_connection', true)) { - /* This feature cannot work without internet access */ - return false; - } return ($this->config->getAppValue(Application::APP_ID, self::CONFIG_DISABLE_PLACES, '0') !== '1'); }