diff --git a/fhem/CHANGED b/fhem/CHANGED index ee2745d89..88c0fe70e 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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. + - change: FB_CALLLIST: start call processing only when "event:" is triggered + by corresponding FB_CALLMONITOR device. - change: FB_CALLMONITOR: default value for attr fritzbox-remote-phonebook-via has been changed to "tr064" (previous: "web") to ensure no problems with new Fritz!OS web layout. diff --git a/fhem/FHEM/72_FB_CALLLIST.pm b/fhem/FHEM/72_FB_CALLLIST.pm index 5956fa859..03f80278a 100755 --- a/fhem/FHEM/72_FB_CALLLIST.pm +++ b/fhem/FHEM/72_FB_CALLLIST.pm @@ -291,6 +291,8 @@ sub FB_CALLLIST_Notify($$) return undef; } + return if(!grep(m/^event:/, @{$d->{CHANGED}})); + my $event = ReadingsVal($fb, "event", undef); my $call_id = ReadingsVal($fb, "call_id", undef);