2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-22 14:16:42 +00:00

FB_CALLLIST: skip already processed events to avoid double processing

git-svn-id: https://svn.fhem.de/fhem/trunk@9194 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markusbloch 2015-09-02 18:57:06 +00:00
parent ff70acbbe2
commit 431e3df5a8

View File

@ -318,6 +318,11 @@ sub FB_CALLLIST_Notify($$)
Log3 $name, 4, "FB_CALLLIST ($name) - already processed event $event for Call-ID $call_id, skipping...";
return undef
}
else
{
$hash->{helper}{LAST_EVENT} = $event;
$hash->{helper}{LAST_CALL_ID} = $call_id;
}
if(exists($hash->{helper}{INTERNAL_FILTER}))
{