2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

55_GDS.pm - minor bugfix

git-svn-id: https://svn.fhem.de/fhem/trunk@6502 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2014-09-04 14:25:59 +00:00
parent 318c857c40
commit 0965aeb1da

View File

@ -327,8 +327,9 @@ sub GDS_Attr(@){
break;
}
when("gdsSetCond"){
CommandDefine(undef, "gdsDummy_$name at +00:00:30 set $name conditions $attrValue");
$attr{gdsDummy}{room} = 'hidden';
my $dummy = "gdsDummy_$name";
CommandDefine(undef, "$dummy at +00:00:30 set $name conditions $attrValue");
$attr{$dummy}{room} = 'hidden';
break;
}
default {$attr{$name}{$attrName} = $attrValue;}