2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-20 19:36:02 +00:00

visibility check fix

git-svn-id: https://svn.fhem.de/fhem/trunk@5733 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
justme-1968 2014-05-03 13:48:48 +00:00
parent bb131dc332
commit a4f6d09e85

View File

@ -684,7 +684,7 @@ readingsGroup_Notify($$)
Log3 $name, 5, "$name: not on any display, ignoring notify";
return undef;
} else {
if( $FW_visibleDeviceHash{$name} ) {
if( defined($FW_visibleDeviceHash{$name}) ) {
} else {
Log3 $name, 5, "$name: no longer visible, ignoring notify";
delete( $hash->{mayBeVisible} );