From 0fc020d3033a12ba42a650f3002cd50034368876 Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Fri, 20 May 2016 18:42:06 -0400 Subject: Added missing response::send() after refactoring --- app/Controller/AvatarFile.php | 1 + 1 file changed, 1 insertion(+) (limited to 'app/Controller/AvatarFile.php') diff --git a/app/Controller/AvatarFile.php b/app/Controller/AvatarFile.php index 67c3efe1..1891a2fc 100644 --- a/app/Controller/AvatarFile.php +++ b/app/Controller/AvatarFile.php @@ -65,6 +65,7 @@ class AvatarFile extends BaseController $this->response->withContentType('image/jpeg'); if ($this->request->getHeader('If-None-Match') !== '"'.$etag.'"') { + $this->response->send(); $this->render($filename, $size); } else { $this->response->status(304); -- cgit v1.2.3