75_MSG: only replace newline for e-mails

git-svn-id: https://svn.fhem.de/fhem/trunk@13208 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
loredo
2017-01-23 14:51:52 +00:00
parent 89a0f403d6
commit deb2012735

View File

@@ -1806,10 +1806,15 @@ m/^(absent|disappeared|unauthorized|disconnected|unreachable)$/i
# correct message format
#
$loopMsg =~ s/\n/<br \/>/gi;
# Replace new line with HTML break
# for e-mails
$loopMsg =~ s/\n/<br \/>\n/gi
if ( $type[$i] eq "mail" );
# Remove Sonos Speak commands
$loopMsg =~ s/((|(\d+)| )\|\w+\|( |))/\n\n/gi
if ( $type[$i] ne "audio" )
; # Remove Sonos Speak commands
if ( $type[$i] ne "audio" );
# use command from device, global or internal default
my $defCmd = "";