bugfix: Param name for IOWrite (subscribe)

git-svn-id: https://svn.fhem.de/fhem/trunk@17841 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
hexenmeister
2018-11-25 15:06:01 +00:00
parent 8ef0b1f072
commit 527501736b

View File

@@ -29,6 +29,9 @@
###############################################################################
#
# CHANGE LOG
#
# 25.11.018 1.0.3
# bugfix : Param name for IOWrite (subscribe)
#
# 21.11.018 1.0.2
# change : techn. func. name changed subscribe => subscriptions
@@ -249,7 +252,7 @@ use warnings;
#my $DEBUG = 1;
my $cvsid = '$Id$';
my $VERSION = "version 1.0.2 by hexenmeister\n$cvsid";
my $VERSION = "version 1.0.3 by hexenmeister\n$cvsid";
my %sets = (
);
@@ -1557,7 +1560,7 @@ sub UpdateSubscriptions($) {
if(isIODevMQTT2($hash)) {
# MQTT2 Subscriptions
IOWrite($hash, "subscriptions", join(" ", @new));
IOWrite($hash, "subscribe", join(" ", @new));
}
}