mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-10 03:06:37 +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:
parent
2ffd21ce54
commit
53892f705d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user