diff --git a/fhem/CHANGED b/fhem/CHANGED index 6f25999df..968f71a0c 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 71_YAMAHA_NP Minor code correction - bugfix: SYSMON: attribute disable does not work properly - fixed: 10_pilight_ctrl send long raw codes - fixed: 98_weekprofile fix mutated vowels diff --git a/fhem/FHEM/71_YAMAHA_NP.pm b/fhem/FHEM/71_YAMAHA_NP.pm index ee19cedbe..0602c7eb7 100644 --- a/fhem/FHEM/71_YAMAHA_NP.pm +++ b/fhem/FHEM/71_YAMAHA_NP.pm @@ -1438,7 +1438,7 @@ sub YAMAHA_NP_ParseResponse if($data =~ /(.+)<\/UDN>/) { my @uuid = split(/:/, $1); - $hash->{UNIQUE_DEVICE_NAME} = uc(@uuid[1]); + $hash->{UNIQUE_DEVICE_NAME} = uc($uuid[1]); } # Replace \n, \r, \t from the string for XML parsing