2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-10 09:16:53 +00:00

fhem.pl: raise the write buffer min length to 1MB from 100k (Forum #92786)

git-svn-id: https://svn.fhem.de/fhem/trunk@17698 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2018-11-07 09:45:22 +00:00
parent 2ffd21ce54
commit 53892f705d

View File

@ -5066,7 +5066,7 @@ addToWritebuffer($$@)
$hash->{WBCallback} = $callback;
if(!$hash->{$wbName}) {
$hash->{$wbName} = $txt;
} elsif($nolimit || length($hash->{$wbName}) < 102400) {
} elsif($nolimit || length($hash->{$wbName}) < 1024000) {
$hash->{$wbName} .= $txt;
} else {
return 0;