diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-11-01 13:01:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-01 13:01:39 +0100 |
commit | d0ba77047e539b7ae102296d096fcfd668a2ec92 (patch) | |
tree | a4d876a3ef9c9629ce6361346cc30eb281d495b2 /app | |
parent | 03d9618595bd2433a319c0bfc0f5bbb14653d0d6 (diff) |
Change max. thumbnail dimensions to 640x360px (360p) (#19619)
Diffstat (limited to 'app')
-rw-r--r-- | app/models/media_attachment.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/media_attachment.rb b/app/models/media_attachment.rb index a24fb857b..4a1948380 100644 --- a/app/models/media_attachment.rb +++ b/app/models/media_attachment.rb @@ -72,7 +72,7 @@ class MediaAttachment < ApplicationRecord }.freeze, small: { - pixels: 160_000, # 400x400px + pixels: 230_400, # 640x360px file_geometry_parser: FastGeometryParser, blurhash: BLURHASH_OPTIONS, }.freeze, |