2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

21_HEOSMaster: fix typo in define Fn

git-svn-id: https://svn.fhem.de/fhem/trunk@15271 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2017-10-17 09:06:20 +00:00
parent f25a15e65a
commit fbb4d54d42
2 changed files with 3 additions and 2 deletions

View File

@ -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: 21_HEOSMaster: fix typo in define Fn
- feature: 93_DbRep: V5.8.0, can set table as flexible argument for command
countEntries and fetchrows
- new: 76_msgDialog: introducing new module to define dialogs for instant

View File

@ -65,7 +65,7 @@ eval "use Encode;1" or $missingModul .= "Encode ";
my $version = "1.0.1";
my $version = "1.0.2";
my %heosCmds = (
'enableChangeEvents' => 'system/register_for_change_events?enable=',
@ -214,7 +214,7 @@ sub HEOSMaster_Define($$) {
InternalTimer( gettimeofday()+15, 'HEOSMaster_FirstRun', $hash, 0 ) if( ($hash->{HOST}) );
}
$modules{HEOSPlayer}{defptr}{$host} = $hash;
$modules{HEOSMaster}{defptr}{$host} = $hash;
return undef;
}