mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-07 12:58:13 +00:00
71_YAMAHA_NP: Minor code correction.
git-svn-id: https://svn.fhem.de/fhem/trunk@11114 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
e666cff882
commit
fd438d6de1
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user