diff --git a/CHANGELOG.md b/CHANGELOG.md index f6b2627b2..93feb29da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ - New broadcast: you can use `org.breezyweather.ACTION_UPDATE_NOTIFIER` (or `org.breezyweather.debug.ACTION_UPDATE_NOTIFIER` with the debug build) to be notified of updated locations (most common use case is coupled with the content provider) **Weather sources** +- Icelandic Met Office - Fix refresh error - Pirate Weather - Fix refresh error diff --git a/app/src/src_nonfreenet/org/breezyweather/sources/veduris/VedurIsApi.kt b/app/src/src_nonfreenet/org/breezyweather/sources/veduris/VedurIsApi.kt index a6b67ee47..d4078e01f 100644 --- a/app/src/src_nonfreenet/org/breezyweather/sources/veduris/VedurIsApi.kt +++ b/app/src/src_nonfreenet/org/breezyweather/sources/veduris/VedurIsApi.kt @@ -10,12 +10,12 @@ import retrofit2.http.Path import retrofit2.http.Query interface VedurIsApi { - @GET("_next/data/b1ce8e8380f4594e6919452d675c101350142055/en/vedur/spar/{id}.json") + @GET("_next/data/3398a8881de02c75a8a910a79dba2473fde746f3/en/vedur/spar/{id}.json") fun getForecast( @Path("id") id: String, ): Observable - @GET("_next/data/b1ce8e8380f4594e6919452d675c101350142055/en/vedur/athuganir/{id}.json") + @GET("_next/data/3398a8881de02c75a8a910a79dba2473fde746f3/en/vedur/athuganir/{id}.json") fun getCurrent( @Path("id") id: String, ): Observable