diff --git a/CHANGED b/CHANGED index ca710f437..8af470199 100644 --- a/CHANGED +++ b/CHANGED @@ -1,5 +1,8 @@ # 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: FB_CALLLIST: fixing double space in certain call state values. + PLEASE CHECK YOUR CONFIGURATION (notify, DOIF, FTUI, etc.) after + this update!!! - added: 71_ONKYO_AVR_ZONE: separate module for ONKYO_AVR zones; any existing ONKYO_AVR devices used for zoning need to to redefined manually by a ONKYO_AVR_ZONE device diff --git a/FHEM/72_FB_CALLLIST.pm b/FHEM/72_FB_CALLLIST.pm index 09b8819f2..36293dc96 100755 --- a/FHEM/72_FB_CALLLIST.pm +++ b/FHEM/72_FB_CALLLIST.pm @@ -662,17 +662,17 @@ sub FB_CALLLIST_returnCallState($$;$) { if($data->{direction} eq "incoming" and $data->{last_event} eq "connect" ) { - $state = "=> [=]"; + $state = "=> [=]"; $state = FB_CALLLIST_returnIcon($hash,"incoming.connected", $state) if($icons); } elsif($data->{direction} eq "incoming" and $data->{last_event} eq "ring") { - $state = "=> ((o))"; + $state = "=> ((o))"; $state = FB_CALLLIST_returnIcon($hash,"incoming.ring", $state) if($icons); } elsif($data->{direction} eq "outgoing" and $data->{last_event} eq "connect" ) { - $state = "<= [=]"; + $state = "<= [=]"; $state = FB_CALLLIST_returnIcon($hash,"outgoing.connected", $state) if($icons); } elsif($data->{direction} eq "outgoing" and $data->{last_event} eq "call")