diff --git a/fhem/CHANGED b/fhem/CHANGED index 59a94309e..259084c06 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 59_LuftdatenInfo: fix API endpoint - bugfix: 10_KNX: fix dpt14 set 0 - bugfix: 89_FULLY: Fixed speak and overlayMessage commands. - bugfix: 74_XiaomiBTLESens: fix incurrect temperatur then value is negativ diff --git a/fhem/FHEM/59_LuftdatenInfo.pm b/fhem/FHEM/59_LuftdatenInfo.pm index f70ff4920..982a58f7c 100644 --- a/fhem/FHEM/59_LuftdatenInfo.pm +++ b/fhem/FHEM/59_LuftdatenInfo.pm @@ -283,7 +283,7 @@ sub LuftdatenInfo_GetHttpResponse($$) { header => "Accept: application/json", callback => \&LuftdatenInfo_ParseHttpResponse, }; - $param->{url} = "http://api.luftdaten.info/v1/sensor/$arg/" + $param->{url} = "https://data.sensor.community/airrohr/v1/sensor/$arg/" if($MODE eq "remote"); $param->{url} = "http://$arg/data.json" if($MODE eq "local");