2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-05-04 20:17:45 +00:00

Temporary GetFn fix (as suggested by Maz)

git-svn-id: https://svn.fhem.de/fhem/trunk@3604 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2013-08-07 16:12:33 +00:00
parent 1b4d002736
commit 1b35db51ae

View File

@ -173,6 +173,9 @@ sub
EIB_Get($@) EIB_Get($@)
{ {
my ($hash, @a) = @_; my ($hash, @a) = @_;
return "" if($a[1] && $a[1] eq "?"); # Temporary hack for FHEMWEB
IOWrite($hash, "B", "r" . $hash->{GROUP}); IOWrite($hash, "B", "r" . $hash->{GROUP});
return "Current value for $hash->{NAME} ($hash->{GROUP}) requested."; return "Current value for $hash->{NAME} ($hash->{GROUP}) requested.";
} }