Skip to content

Commit f36983d

Browse files
committed
fix: invert condition to send content
1 parent ad78b60 commit f36983d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/router/src/GenericResponseSender.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function send(Response $response): Response
3131
$this->sendHeaders($response);
3232
ob_flush();
3333

34-
if (! $this->shouldSendContent()) {
34+
if ($this->shouldSendContent()) {
3535
$this->sendContent($response);
3636
}
3737

0 commit comments

Comments
 (0)