98_HTTPMOD: small fix for utils

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

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;
}