Merge branch 'release/3.4'

This commit is contained in:
Dylan K. Taylor
2018-11-03 16:58:19 +00:00
4 changed files with 5 additions and 7 deletions

View File

@ -56,7 +56,7 @@ class ChunkRequestTask extends AsyncTask{
$stream = new PacketStream();
$stream->putPacket($pk);
$this->setResult(NetworkCompression::compress($stream->buffer, $this->compressionLevel), false);
$this->setResult(NetworkCompression::compress($stream->buffer, $this->compressionLevel));
}
public function onCompletion() : void{

View File

@ -42,7 +42,7 @@ class CompressBatchTask extends AsyncTask{
}
public function onRun() : void{
$this->setResult(NetworkCompression::compress($this->data, $this->level), false);
$this->setResult(NetworkCompression::compress($this->data, $this->level));
}
public function onCompletion() : void{