mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 23:06:37 +00:00
74_AMAD: fix Issues 475717
git-svn-id: https://svn.fhem.de/fhem/trunk@11853 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
8085f80cb4
commit
c92ce4a714
@ -1,5 +1,6 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- bugfix: 74_AMAD: fix Issues 475717
|
||||
- feature: 77_UWZ: added lang attribute
|
||||
- feature: 98_rssFeed: optionally create events for all readings
|
||||
- bugfix: 77_UWZ: fix Issues 472183 and 473982
|
||||
|
@ -37,8 +37,8 @@ use TcpServerUtils;
|
||||
use Encode qw(encode);
|
||||
|
||||
|
||||
my $modulversion = "2.4.1";
|
||||
my $flowsetversion = "2.4.0";
|
||||
my $modulversion = "2.4.3";
|
||||
my $flowsetversion = "2.4.1";
|
||||
|
||||
|
||||
|
||||
@ -1127,7 +1127,7 @@ sub AMAD_CommBridge_Read($) {
|
||||
my $c;
|
||||
my $device = $header->{FHEMDEVICE} if(defined($header->{FHEMDEVICE}));
|
||||
my $fhemcmd = $header->{FHEMCMD} if(defined($header->{FHEMCMD}));
|
||||
my $dhash = $defs{$device} if( $defs{$device} );
|
||||
my $dhash = $defs{$device} if(defined($device));
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user