Skip to content

Commit

Permalink
fix for Link header override....again
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Schlick committed Jul 30, 2016
1 parent f5e8534 commit 065cd40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http2ServerPushMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected function addServerPushHeaders()
{
if (app('server-push')->hasLinks()) {
$link = implode(',', app('server-push')->generateLinks());
$this->response->headers->set('Link', $link);
$this->response->headers->set('Link', $link, false);
}
}

Expand Down

0 comments on commit 065cd40

Please sign in to comment.