Reduce file size

This commit is contained in:
Rob Vella 2020-07-31 19:33:07 -07:00
parent 1d4e4401f9
commit 094a142618
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ class Stream
$this->keyed[$node] = $keyedNow ?: null;
if ($keyedBefore !== $keyedNow) {
if (filesize($this->streamOutput) >= 10240) {
if (filesize($this->streamOutput) >= 4096) {
file_put_contents($this->streamOutput, '');
}