mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-09 20:57:11 +00:00
21_HEOSDevice.pm: fix Use of uninitialized value {repeat} in substitution (s///)
git-svn-id: https://svn.fhem.de/fhem/trunk@16400 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
79b42247de
commit
5f151e5c44
@ -1,5 +1,7 @@
|
||||
# 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.
|
||||
- update: 21_HEOS: fix Use of uninitialized value {repeat}
|
||||
in substitution (s///)
|
||||
- change: 88_xs1Bridge: Typ timerswitch added
|
||||
- change: 88_xs1Dev: Typ timerswitch added
|
||||
- feature: 72_FB_CALLMONITOR: new reverse search provider 11880.com (german)
|
||||
|
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Developed with Kate
|
||||
#
|
||||
# (c) 2017 Copyright: Marko Oldenburg (leongaultier at gmail dot com)
|
||||
# (c) 2017-2018 Copyright: Marko Oldenburg (leongaultier at gmail dot com)
|
||||
# All rights reserved
|
||||
#
|
||||
# Special thanks goes to comitters:
|
||||
|
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Developed with Kate
|
||||
#
|
||||
# (c) 2017 Copyright: Marko Oldenburg (leongaultier at gmail dot com)
|
||||
# (c) 2017-2018 Copyright: Marko Oldenburg (leongaultier at gmail dot com)
|
||||
# All rights reserved
|
||||
#
|
||||
# Special thanks goes to comitters:
|
||||
|
@ -2,7 +2,7 @@
|
||||
#
|
||||
# Developed with Kate
|
||||
#
|
||||
# (c) 2017 Copyright: Marko Oldenburg (leongaultier at gmail dot com)
|
||||
# (c) 2017-2018 Copyright: Marko Oldenburg (leongaultier at gmail dot com)
|
||||
# All rights reserved
|
||||
#
|
||||
# Special thanks goes to comitters:
|
||||
@ -39,7 +39,7 @@ use Encode qw(encode_utf8);
|
||||
use URI::Escape;
|
||||
#use Data::Dumper;
|
||||
|
||||
my $version = "1.0.3";
|
||||
my $version = "1.0.4";
|
||||
|
||||
|
||||
|
||||
@ -938,7 +938,7 @@ sub HEOSPlayer_PreProcessingReadings($$) {
|
||||
|
||||
$buffer{'shuffle'} = $message{shuffle};
|
||||
$buffer{'repeat'} = $message{repeat};
|
||||
$buffer{'repeat'} =~ s/.*\_(.*)/$1/g;
|
||||
$buffer{'repeat'} =~ s/.*\_(.*)/$1/g if( defined($buffer{'repeat'}) );
|
||||
|
||||
} elsif ( $decode_json->{heos}{command} =~ /get_mute/ ) {
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user