2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-07 19:04:20 +00:00

37_echodevice.pm: bugfixes

git-svn-id: https://svn.fhem.de/fhem/trunk@23691 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
michael.winkler 2021-02-07 15:39:21 +00:00
parent 5f9674fc51
commit c44a88fb18

View File

@ -2,6 +2,9 @@
#
##############################################
#
# 2021.02.07 v0.2.8
# - BUG: Sonso aktualisiert keine voice Readings
#
# 2021.01.28 v0.2.7
# - BUG: Routinen werden nicht mehr angezeigt
#
@ -447,7 +450,7 @@ use Time::Piece;
use lib ('./FHEM/lib', './lib');
use MP3::Info;
my $ModulVersion = "0.2.7";
my $ModulVersion = "0.2.8";
my $AWSPythonVersion = "0.0.3";
my $NPMLoginTyp = "unbekannt";
@ -2763,10 +2766,10 @@ sub echodevice_Parse($$$) {
# Device ID herausfiltern
my $sourceDeviceIds = "";
foreach my $cards (@{$card->{sourceDeviceIds}}) {
next if (echodevice_getModel($cards->{deviceType}) eq "Echo Multiroom");
next if (echodevice_getModel($cards->{deviceType}) eq "Sonos Display");
next if (echodevice_getModel($cards->{deviceType}) eq "Echo Stereopaar");
next if (echodevice_getModel($cards->{deviceType}) eq "unbekannt");
#next if (echodevice_getModel($cards->{deviceType}) eq "Echo Multiroom");
#next if (echodevice_getModel($cards->{deviceType}) eq "Sonos Display");
#next if (echodevice_getModel($cards->{deviceType}) eq "Echo Stereopaar");
#next if (echodevice_getModel($cards->{deviceType}) eq "unbekannt");
$sourceDeviceIds = $cards->{serialNumber};
}