From 383a5087cfac1bedb7f52b517fd6e377dd1f978f Mon Sep 17 00:00:00 2001 From: StefanStrobel <> Date: Wed, 21 Oct 2020 15:42:57 +0000 Subject: [PATCH] 98_HTTPMOD: bugfix git-svn-id: https://svn.fhem.de/fhem/trunk@23000 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/98_HTTPMOD.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/FHEM/98_HTTPMOD.pm b/fhem/FHEM/98_HTTPMOD.pm index 318a89c0b..845451efc 100755 --- a/fhem/FHEM/98_HTTPMOD.pm +++ b/fhem/FHEM/98_HTTPMOD.pm @@ -2553,7 +2553,7 @@ sub HandleSendQueue { } continue { shift(@{$queue}); # remove unusable first element and iterate } - return if (!ReadyForSending()); # check busy and delays + return if (!ReadyForSending($hash)); # check busy and delays shift( @{$queue} ); # first element is good and will be used now, remove it from queue (after delays are ok) $hash->{BUSY} = 1; # queue is busy until response is received