71_YAMAHA_NP: Minor code correction.

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@11114 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
ra666ack
2016-03-23 06:41:10 +00:00
parent f9563aa289
commit 2e6a3c160c
2 changed files with 2 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # 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. # 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 - bugfix: SYSMON: attribute disable does not work properly
- fixed: 10_pilight_ctrl send long raw codes - fixed: 10_pilight_ctrl send long raw codes
- fixed: 98_weekprofile fix mutated vowels - fixed: 98_weekprofile fix mutated vowels

View File

@@ -1438,7 +1438,7 @@ sub YAMAHA_NP_ParseResponse
if($data =~ /<UDN>(.+)<\/UDN>/) if($data =~ /<UDN>(.+)<\/UDN>/)
{ {
my @uuid = split(/:/, $1); 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 # Replace \n, \r, \t from the string for XML parsing