From 44b07fc27e57c0809dad33f67f10d9ec3ed1be65 Mon Sep 17 00:00:00 2001 From: Stypox Date: Fri, 9 Feb 2024 15:55:35 +0000 Subject: [PATCH] fix: use https instead of http for geo --- .../main/kotlin/foundation/e/blissweather/api/OpenWeatherApi.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/src/main/kotlin/foundation/e/blissweather/api/OpenWeatherApi.kt b/data/src/main/kotlin/foundation/e/blissweather/api/OpenWeatherApi.kt index e0c5c65..5736d95 100644 --- a/data/src/main/kotlin/foundation/e/blissweather/api/OpenWeatherApi.kt +++ b/data/src/main/kotlin/foundation/e/blissweather/api/OpenWeatherApi.kt @@ -68,6 +68,6 @@ interface OpenWeatherApi { companion object { const val BASE_API_URL = "https://api.openweathermap.org/data/2.5/" - const val BASE_GEOCODING_URL = "http://api.openweathermap.org/geo/1.0/" + const val BASE_GEOCODING_URL = "https://api.openweathermap.org/geo/1.0/" } } -- GitLab