2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 18:59:33 +00:00

fixed: error in attribute assignment (altitude vs. pressure)

git-svn-id: https://svn.fhem.de/fhem/trunk@3634 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2013-08-08 21:52:21 +00:00
parent 8b4d6d7240
commit 4d72a7d70b

View File

@ -682,8 +682,8 @@ sub retrieveConditions($$@){
if(length($wx{"Station"})){
$cread{$prefix."_stationName"} = $wx{"Station"};
$cread{$prefix."_altitude"} = $wx{"Luftd."};
$cread{$prefix."_pressure-nn"} = $wx{"H\xF6he"};
$cread{$prefix."_altitude"} = $wx{"H\xF6he"};
$cread{$prefix."_pressure-nn"} = $wx{"Luftd."};
$cread{$prefix."_temperature"} = $wx{"TT"};
$cread{$prefix."_tempMin"} = $wx{"Tmin"};
$cread{$prefix."_tempMax"} = $wx{"Tmax"};