2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-09 14:47:00 +00:00

FB_CALLMONITOR: fix reverse search via dasoertliche.de (Forum: #85301)

git-svn-id: https://svn.fhem.de/fhem/trunk@16342 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markusbloch 2018-03-06 16:47:19 +00:00
parent 5fb229a3d3
commit 7b345545a9
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# 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: fixing reverse search via dasoertliche.de
- feature: 39_Talk2Fhem: V0.5 Object radiusing
- bugfix: 93_DbLog: V3.8.8, no exit if configuration couldn't be read
- change: 93_DbLog: V3.8.7, no change limits got fron SVG

View File

@ -732,8 +732,8 @@ FB_CALLMONITOR_reverseSearch($$)
}
else
{
#Log 2, $result;
if($result =~ m,<a href="http\://.+?\.dasoertliche\.de.+?".+?class="name ".+?><span class="">(.+?)</span>,)
#Debug($result);
if($result =~ m,<a href="[^"]*form_name=detail[^"]*".+?class="name ".+?><span class="">(.+?)</span>,)
{
$invert_match = $1;
$invert_match = FB_CALLMONITOR_html2txt($invert_match);