From 1e96ed4e7de7637e1adae3e5deaafad6c0fe536c Mon Sep 17 00:00:00 2001 From: justme-1968 Date: Tue, 3 Sep 2013 18:55:44 +0000 Subject: [PATCH] bug fix git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@3848 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/36_JeeLink.pm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/FHEM/36_JeeLink.pm b/FHEM/36_JeeLink.pm index f83a4ef69..1b58a2102 100644 --- a/FHEM/36_JeeLink.pm +++ b/FHEM/36_JeeLink.pm @@ -414,10 +414,10 @@ JeeLink_Parse($$$$) #Log3, $name, 5, "$name: $dmsg $rssi $lqi"; next if(!$dmsg || length($dmsg) < 1); # Bogus messages - next if($dmsg =~ m/^\[pcaSerial/ ); # ignore startup messages - next if($dmsg =~ m/^Available commands:/ ); # ignore startup messages - next if($dmsg =~ m/^ .* - / ); # ignore startup messages - next if($dmsg =~ m/^-> ack/ ); # ignore send ack + return if($dmsg =~ m/^\[pcaSerial/ ); # ignore startup messages + return if($dmsg =~ m/^Available commands:/ ); # ignore startup messages + return if($dmsg =~ m/^ .* - / ); # ignore startup messages + return if($dmsg =~ m/^-> ack/ ); # ignore send ack $hash->{"${name}_MSGCNT"}++; $hash->{"${name}_TIME"} = TimeNow();