From 862af4aa6356e67195f74f7f850034ee752b2db5 Mon Sep 17 00:00:00 2001 From: rudolfkoenig Date: Wed, 7 Nov 2018 09:45:22 +0000 Subject: [PATCH] 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 --- fhem/fhem.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fhem/fhem.pl b/fhem/fhem.pl index a8b0737b9..f9ea2e727 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -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;