2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

change: techn. func. name changed subscribe => subscriptions

git-svn-id: https://svn.fhem.de/fhem/trunk@17809 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
hexenmeister 2018-11-21 21:18:47 +00:00
parent c672ed3b87
commit e536954966

View File

@ -30,6 +30,9 @@
#
# CHANGE LOG
#
# 21.11.018 1.0.2
# change : techn. func. name changed subscribe => subscriptions
#
# 20.11.2018 1.0.2
# feature : set subscriptions list to mqtt2-IO
#
@ -246,7 +249,7 @@ use warnings;
#my $DEBUG = 1;
my $cvsid = '$Id$';
my $VERSION = "version 1.0.1 by hexenmeister\n$cvsid";
my $VERSION = "version 1.0.2 by hexenmeister\n$cvsid";
my %sets = (
);
@ -1554,7 +1557,7 @@ sub UpdateSubscriptions($) {
if(isIODevMQTT2($hash)) {
# MQTT2 Subscriptions
IOWrite($hash, "subscribe", join(" ", @new));
IOWrite($hash, "subscriptions", join(" ", @new));
}
}