From: Christoph Weitkamp Date: Sun, 8 Aug 2021 12:22:13 +0000 (+0200) Subject: [openweathermap] Fix ozone mapping in DTO (#11086) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=8a774cb1c592de944c40328f75e93597143866ea;p=openhab-addons.git [openweathermap] Fix ozone mapping in DTO (#11086) - Fix ozone mapping in DTO Signed-off-by: Christoph Weitkamp --- diff --git a/bundles/org.openhab.binding.openweathermap/src/main/java/org/openhab/binding/openweathermap/internal/dto/airpollution/Components.java b/bundles/org.openhab.binding.openweathermap/src/main/java/org/openhab/binding/openweathermap/internal/dto/airpollution/Components.java index 3c20083f32..58336305e4 100644 --- a/bundles/org.openhab.binding.openweathermap/src/main/java/org/openhab/binding/openweathermap/internal/dto/airpollution/Components.java +++ b/bundles/org.openhab.binding.openweathermap/src/main/java/org/openhab/binding/openweathermap/internal/dto/airpollution/Components.java @@ -26,7 +26,7 @@ public class Components { public double nitrogenMonoxide; @SerializedName("no2") public double nitrogenDioxide; - @SerializedName("o2") + @SerializedName("o3") public double ozone; @SerializedName("so2") public double sulphurDioxide;