diff options
author | KN4CK3R <KN4CK3R@users.noreply.github.com> | 2019-07-10 22:12:02 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-10 13:12:02 -0700 |
commit | 1a39c46620febdb22d8b0e4cadbbdeeefa00c3ac (patch) | |
tree | ba31a11bede861a71f2c026115a712769cf987d7 /app/Controller/AvatarFileController.php | |
parent | d3d55224329681722b52a84b31f141bf78aaa134 (diff) |
Save thumbnails as PNG to allow transparency
Diffstat (limited to 'app/Controller/AvatarFileController.php')
-rw-r--r-- | app/Controller/AvatarFileController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/AvatarFileController.php b/app/Controller/AvatarFileController.php index 81a324fb..12c4069c 100644 --- a/app/Controller/AvatarFileController.php +++ b/app/Controller/AvatarFileController.php @@ -69,7 +69,7 @@ class AvatarFileController extends BaseController $etag = md5($filename.$size); $this->response->withCache(365 * 86400, $etag); - $this->response->withContentType('image/jpeg'); + $this->response->withContentType('image/png'); if ($this->request->getHeader('If-None-Match') !== '"'.$etag.'"') { $this->response->send(); |