diff --git a/fhem/CHANGED b/fhem/CHANGED index b2bda0fde..6edc16e8e 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. + - bugfix: 72_FB_CALLMONITOR: fix not working reverse-search-phonebook + file import - change: 93_DbLog: V2.22.15, some Log verbose level adapted/added - bugfix: 44_S7_ARead: event-on-change-reading - bugfix: 44_S7_AWrite: event-on-change-reading diff --git a/fhem/FHEM/72_FB_CALLMONITOR.pm b/fhem/FHEM/72_FB_CALLMONITOR.pm index 1b5dfde6e..94e3eab18 100755 --- a/fhem/FHEM/72_FB_CALLMONITOR.pm +++ b/fhem/FHEM/72_FB_CALLMONITOR.pm @@ -1044,7 +1044,7 @@ sub FB_CALLMONITOR_readPhonebook($;$) Log3 $name, 2, "FB_CALLMONITOR ($name) - found FritzBox phonebook $phonebook_file"; - ($err, $count_contacts) = FB_CALLMONITOR_parsePhonebook($hash, $phonebook); + ($err, $count_contacts, $pb_hash) = FB_CALLMONITOR_parsePhonebook($hash, $phonebook); if(defined($err)) { @@ -1053,6 +1053,7 @@ sub FB_CALLMONITOR_readPhonebook($;$) } else { + $hash->{helper}{PHONEBOOK} = $pb_hash; Log3 $name, 2, "FB_CALLMONITOR ($name) - read $count_contacts contact".($count_contacts == 1 ? "" : "s")." from $phonebook_file"; } }