We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97cd17d + 36333ad commit 43deea9Copy full SHA for 43deea9
Task/TaskManager.php
@@ -231,7 +231,7 @@ public function filterResponse(FilterResponseEvent $event)
231
232
// Ensures minimum output has been set, otherwise PHP will not flush properly and tasks will hang the browser.
233
$minOutputLen = PHP_INT_SIZE * 1024;
234
- if ($length < $minOutputLen) {
+ if ($length < $minOutputLen && !$response->isEmpty()) {
235
$padding = $minOutputLen - $length + 1;
236
$response->setContent($content.str_pad('', $padding));
237
}
0 commit comments