From 9c1c82c045fdfb02a1e47754db992c96e988da44 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Wed, 7 Aug 2013 16:12:33 +0000 Subject: [PATCH] Temporary GetFn fix (as suggested by Maz) git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@3604 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/10_EIB.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/FHEM/10_EIB.pm b/FHEM/10_EIB.pm index 170742634..bb636fb68 100644 --- a/FHEM/10_EIB.pm +++ b/FHEM/10_EIB.pm @@ -173,6 +173,9 @@ sub EIB_Get($@) { my ($hash, @a) = @_; + + return "" if($a[1] && $a[1] eq "?"); # Temporary hack for FHEMWEB + IOWrite($hash, "B", "r" . $hash->{GROUP}); return "Current value for $hash->{NAME} ($hash->{GROUP}) requested."; }