From f3a8c6806dc3e69db96a770de4a2d9c0020063b8 Mon Sep 17 00:00:00 2001 From: markusbloch <> Date: Thu, 18 Jun 2015 19:32:05 +0000 Subject: [PATCH] FB_CALLLIST: removed unneccessary if-statement git-svn-id: https://svn.fhem.de/fhem/trunk@8772 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/72_FB_CALLLIST.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fhem/FHEM/72_FB_CALLLIST.pm b/fhem/FHEM/72_FB_CALLLIST.pm index 01456a74b..436c5600a 100755 --- a/fhem/FHEM/72_FB_CALLLIST.pm +++ b/fhem/FHEM/72_FB_CALLLIST.pm @@ -137,7 +137,7 @@ sub FB_CALLLIST_Attr($@) if($init_done) { # delete all outdated calls according to attribute list-type, internal-number-filter and number-of-calls - FB_CALLLIST_cleanupList($hash) if($init_done); + FB_CALLLIST_cleanupList($hash); # Inform all FHEMWEB clients FB_CALLLIST_updateFhemWebClients($hash); @@ -176,7 +176,7 @@ sub FB_CALLLIST_Attr($@) if($init_done) { # delete all outdated calls according to attribute list-type, internal-number-filter and number-of-calls - FB_CALLLIST_cleanupList($hash) if($init_done); + FB_CALLLIST_cleanupList($hash); # Inform all FHEMWEB clients FB_CALLLIST_updateFhemWebClients($hash);