From 57e0443ad662d5f08368b8107cb686cee88b4b96 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Fri, 8 Dec 2017 21:37:14 +0000 Subject: [PATCH] HttpUtils.pm: Fix BlockingCall with callback (c)26_tahoma.pm (Forum #80712) git-svn-id: https://svn.fhem.de/fhem/trunk@15569 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/FHEM/HttpUtils.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/fhem/FHEM/HttpUtils.pm b/fhem/FHEM/HttpUtils.pm index c11228d2b..4e1200001 100644 --- a/fhem/FHEM/HttpUtils.pm +++ b/fhem/FHEM/HttpUtils.pm @@ -853,6 +853,7 @@ sub HttpUtils_BlockingGet($) { my ($hash) = @_; + delete $hash->{callback}; # Forum #80712 $hash->{hu_blocking} = 1; my ($isFile, $fErr, $fContent) = HttpUtils_File($hash); return ($fErr, $fContent) if($isFile);