98_HTTPMOD: small fix for utils

git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@23981 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
StefanStrobel 2021-03-15 16:26:40 +00:00
parent 819e471cd3
commit 1bd8e40000

View File

@ -739,7 +739,7 @@ sub BodyDecode {
$decoding = $bodyCharset;
}
}
elsif (lower($bodyDecode) eq lower($bodyCharset)) {
elsif (lc($bodyDecode) eq lc($bodyCharset)) {
Log3 $name, 4, "$name: BodyDecode is decoding the response body as $bodyDecode";
$decoding = $bodyCharset;
}