2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-04 11:26:55 +00:00

fix for setList state:slider,...

git-svn-id: https://svn.fhem.de/fhem/trunk@4671 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2014-01-16 21:19:27 +00:00
parent 1041b17dad
commit f177a08a65

View File

@ -196,6 +196,9 @@ readingsProxy_Set($@)
if( "$set " =~ m/^${a[0]}[ :]/ ) { if( "$set " =~ m/^${a[0]}[ :]/ ) {
$found = 1; $found = 1;
last; last;
} elsif( "$set " =~ m/^state[ :]/ ) {
$found = 1;
last;
} }
} }
return SetExtensions($hash,$setList,$name,@a) if( !$found ); return SetExtensions($hash,$setList,$name,@a) if( !$found );