From: Dan Brown Date: Sun, 19 May 2019 13:52:17 +0000 (+0100) Subject: Doubled image upload display thumb size X-Git-Tag: v0.26.2~1^2~16 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/0a0ceb382ea646b8773ed32405271705dd26ccfc?ds=inline;hp=-c Doubled image upload display thumb size Related to #1108 --- 0a0ceb382ea646b8773ed32405271705dd26ccfc diff --git a/app/Uploads/ImageRepo.php b/app/Uploads/ImageRepo.php index 38dd3066b..da0b7d379 100644 --- a/app/Uploads/ImageRepo.php +++ b/app/Uploads/ImageRepo.php @@ -230,7 +230,7 @@ class ImageRepo { $image->thumbs = [ 'gallery' => $this->getThumbnail($image, 150, 150, false), - 'display' => $this->getThumbnail($image, 840, null, true) + 'display' => $this->getThumbnail($image, 1680, null, true) ]; }