prevent warning in StreamResponse

Signed-off-by: Robin Appelman <robin@icewind.nl>
pull/2404/head
Robin Appelman 10 years ago
parent 8d81b9e6eb
commit 72a54ff9de
No known key found for this signature in database
GPG Key ID: 425003AC385454C5
  1. 2
      lib/public/AppFramework/Http/StreamResponse.php

@ -54,7 +54,7 @@ class StreamResponse extends Response implements ICallbackResponse {
public function callback (IOutput $output) {
// handle caching
if ($output->getHttpResponseCode() !== Http::STATUS_NOT_MODIFIED) {
if (!(file_exists($this->filePath) || is_resource($this->filePath))) {
if (!(is_resource($this->filePath) || file_exists($this->filePath))) {
$output->setHttpResponseCode(Http::STATUS_NOT_FOUND);
} elseif ($output->setReadfile($this->filePath) === false) {
$output->setHttpResponseCode(Http::STATUS_BAD_REQUEST);

Loading…
Cancel
Save