10_MQTT2_DEVICE.pm: try to handle \s in topic (Forum #107206)

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@20964 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2020-01-13 17:02:05 +00:00
parent e26e75e2dc
commit 64e3ca1bf9

View File

@ -249,6 +249,7 @@ MQTT2_DEVICE_Parse($$)
}
$topic =~ s,([\^\$\[\]()\.\\]),\\$1,g;
$topic =~ s,\s,.,g;
for my $ch (@{$cidArr}) {
my $nn = $ch->{NAME};