2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-17 11:26:03 +00:00

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 861def5d87
commit 3f119ba655

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