From a4e698feb9e8351eed44a6e29e6912bf3fa87835 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Mon, 27 Dec 2010 08:39:46 +0000 Subject: [PATCH] RFR adapted to the new Clients/MatchList location git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@780 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/16_CUL_RFR.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FHEM/16_CUL_RFR.pm b/FHEM/16_CUL_RFR.pm index ea8d3ed22..7aae79bcb 100755 --- a/FHEM/16_CUL_RFR.pm +++ b/FHEM/16_CUL_RFR.pm @@ -13,8 +13,6 @@ CUL_RFR_Initialize($) # Message is like # K41350270 - $hash->{Clients} = $modules{CUL}->{Clients}; - $hash->{MatchList} = $modules{CUL}->{MatchList}; $hash->{Match} = "^[0-9A-F]{4}U."; $hash->{DefFn} = "CUL_RFR_Define"; $hash->{UndefFn} = "CUL_RFR_Undef"; @@ -94,6 +92,8 @@ CUL_RFR_Parse($$) elsif($smsg =~ m/^K/) { $hash->{NR_KMSG}++ } else { $hash->{NR_RMSG}++ } + $hash->{Clients} = $iohash->{Clients}; + $hash->{MatchList} = $iohash->{MatchList}; foreach my $m (split(";", $smsg)) { CUL_Parse($hash, $iohash, $hash->{NAME}, $m, "X21"); }