From f2b8265fb724d2c1e190ab831b4969cb03033a5d Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Tue, 15 Feb 2022 08:34:42 +0000 Subject: [PATCH] fhem.pl: global encoding utf8 changed to bytestream (Forum #126088) git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@25684 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fhem.pl b/fhem.pl index 4b6ce24c6..e89e2f034 100755 --- a/fhem.pl +++ b/fhem.pl @@ -339,7 +339,7 @@ my @globalAttrList = qw( dnsServer dupTimeout exclude_from_update - encoding:utf8,unicode + encoding:bytestream,unicode hideExcludedUpdates:1,0 featurelevel:6.1,6.0,5.9,5.8,5.7,5.6,5.5,99.99 genericDisplayType:switch,outlet,light,blind,speaker,thermostat @@ -2902,8 +2902,8 @@ GlobalAttr($$$$) } if($name eq "encoding") { # Should be called from fhem.cfg/configDB - return "bad encoding parameter $val, good values are utf8 or unicode" - if($val ne "unicode" && $val ne "utf8"); + return "bad encoding parameter $val, good values are bytestream or unicode" + if($val ne "unicode" && $val ne "bytestream"); $unicodeEncoding = ($val eq "unicode"); $currlogfile = ""; }