diff --git a/fhem/CHANGED b/fhem/CHANGED index 71ad3befa..15bc114ea 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - fixed: 98_weekprofile fix mutated vowels - feature: 50_TelegramBot new option to retry for send & confirmation dialog for favorites - fixed: configDB.pm - fix filelist problem on perl >= 5.20 diff --git a/fhem/FHEM/98_weekprofile.pm b/fhem/FHEM/98_weekprofile.pm index 520cec578..f2227dbe5 100644 --- a/fhem/FHEM/98_weekprofile.pm +++ b/fhem/FHEM/98_weekprofile.pm @@ -937,7 +937,8 @@ sub weekprofile_readProfilesFromFile(@) return; } - my $ret = open(my $fh, '<:encoding(UTF-8)', $filename); + #my $ret = open(my $fh, '<:encoding(UTF-8)', $filename); + my $ret = open(my $fh, '<', $filename); if (!$ret){ Log3 $me, 1, "$me(readProfilesFromFile): Could not open file '$filename' $!"; return;