2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 06:39:11 +00:00

FB_CALLMONITOR: fix log message "unknown reverse search method ," (Forum: #85761)

git-svn-id: https://svn.fhem.de/fhem/trunk@16590 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markusbloch 2018-04-11 20:10:45 +00:00
parent 1b607d9b47
commit 7b08139267
2 changed files with 3 additions and 1 deletions

View File

@ -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 log message on every reverse search:
"unknown reverse search method ,"
- bugfix: 93_DbLog: V3.10.4, fix addLog if no valueFn is used
- bugfix: 93_DbLog: V3.10.3, minor fixes in addLog function
- new: 00_Neuron.pm, 10_NeuronPin.pm: support for Neuron Devices

View File

@ -669,7 +669,7 @@ FB_CALLMONITOR_reverseSearch($$)
my $status;
my $invert_match = undef;
my $country_code = AttrVal($name, "country-code", "0049");
my @attr_list = split("(,|\\|)", AttrVal($name, "reverse-search", ""));
my @attr_list = split(/,|\|/, AttrVal($name, "reverse-search", ""));
foreach my $method (@attr_list)
{