2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-17 17:36:01 +00:00

10_FBDECT.pm: set fbprop to none if missing (Forum #85930)

git-svn-id: https://svn.fhem.de/fhem/trunk@16441 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2018-03-18 21:39:08 +00:00
parent 9a5607dd4b
commit 81cbf73170

View File

@ -269,6 +269,7 @@ FBDECT_ParseHttp($$$)
my @fb;
map { push @fb, $ll{$_} if((1<<$_) & $lsn) } sort keys %ll;
my $fbprop = join(",", @fb);
$fbprop = "none" if(!$fbprop); # 85930
my $dp = $modules{FBDECT}{defptr};
my $hash = $dp->{"$ioName:$ain"};