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 8bbf0c52b7
commit 862af4aa63

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;