as per common sense, thread wasn’t resolved.
There is a bug in the code. Hop to that line 2170 and change
else
$this->response->body .= $data;
to
else
if (!isset($this->response->body)) $this->response->body = $data;
else $this->response->body .= $data;