Change custom emoji file size limit from 50 KB to 256 KB (#18788)

This commit is contained in:
Eugen Rochko 2022-07-09 22:07:17 +02:00 committed by GitHub
parent 04cdfc0086
commit 12ed2d793b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
class CustomEmoji < ApplicationRecord
include Attachmentable
LIMIT = 50.kilobytes
LIMIT = 256.kilobytes
SHORTCODE_RE_FRAGMENT = '[a-zA-Z0-9_]{2,}'