mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-09 20:57:11 +00:00
HMCCU: Fixed bug in RPC callback URL creation
git-svn-id: https://svn.fhem.de/fhem/trunk@21747 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
e82b4d9a97
commit
19f1685d40
@ -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: 88_HMCCU: Fixed bug in RPC callback URL creation.
|
||||
- bugfix: OpenWeatherMapAPI: fix Use of uninitialized value in sprintf
|
||||
- change: 58_HVAC_DaikinAC.pm: initial checkin for new module.
|
||||
Forum topic #109562
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
# $Id$
|
||||
#
|
||||
# Version 4.3.024
|
||||
# Version 4.3.025
|
||||
#
|
||||
# Module for communication between FHEM and Homematic CCU2/3.
|
||||
#
|
||||
@ -52,7 +52,7 @@ my %HMCCU_CUST_CHN_DEFAULTS;
|
||||
my %HMCCU_CUST_DEV_DEFAULTS;
|
||||
|
||||
# HMCCU version
|
||||
my $HMCCU_VERSION = '4.3.024';
|
||||
my $HMCCU_VERSION = '4.3.025';
|
||||
|
||||
# Constants and default values
|
||||
my $HMCCU_MAX_IOERRORS = 100;
|
||||
@ -3780,7 +3780,7 @@ sub HMCCU_GetRPCCallbackURL ($$$$$)
|
||||
|
||||
return undef if (!defined ($hash));
|
||||
|
||||
my $hmccu_hash = $hash->{TYPE} eq 'HMCCURPC' ? $hash->{IODev} : $hash;
|
||||
my $hmccu_hash = $hash->{TYPE} eq 'HMCCURPCPROC' ? $hash->{IODev} : $hash;
|
||||
|
||||
return undef if (!exists ($hmccu_hash->{hmccu}{interfaces}{$iface}) &&
|
||||
!exists ($hmccu_hash->{hmccu}{ifports}{$iface}));
|
||||
|
Loading…
x
Reference in New Issue
Block a user