Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't try to minify a BinaryFileResponse #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

eab-andy
Copy link

Don't try to minify a BinaryFileResponse, otherwise you will get the error:

"LogicException(code: 0): The content cannot be set on a BinaryFileResponse instance"

@fritzmg
Copy link

fritzmg commented Aug 4, 2016

The same problem happens with a StreamedResponse:

LogicException: "The content cannot be set on a StreamedResponse instance."

So it should be

if ( $response instanceof BinaryFileResponse ||
     $response instanceof StreamedResponse )
    return;

I think those are the only two Response types where the content cannot be set.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants