2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-14 05:46:35 +00:00

eventTypes.pm: filter another CUL_HM event (Forum #29896)

git-svn-id: https://svn.fhem.de/fhem/trunk@7221 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-12-15 10:02:49 +00:00
parent d3afa6013d
commit 2c61efe1cb

View File

@ -39,6 +39,7 @@ eventTypes_Define($$)
foreach my $l (@content) {
next if(!defined($l));
next if($l =~ m/ CULHM (SND|RCV) /);
next if($l =~ m/RAWMSG/);
next if($l =~ m/ UNKNOWNCODE /);
next if($l =~ m/^\d+ global /);
my @a = split(" ", $l, 3);