diff options
author | chr <chr@cybre.space> | 2019-06-23 13:58:33 -0700 |
---|---|---|
committer | chr <chr@cybre.space> | 2021-03-01 21:29:33 -0800 |
commit | b75a99e16b5370a71889be607389676388377a3a (patch) | |
tree | e2bfda272a951c65d591c610383467473bec15d6 /app/validators | |
parent | 633d175146d6acaf2cc4bfbfcfdee4c85ef20ed1 (diff) |
Feature: 1024-character posts in server and client
Diffstat (limited to 'app/validators')
-rw-r--r-- | app/validators/status_length_validator.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/validators/status_length_validator.rb b/app/validators/status_length_validator.rb index 93bae2fa8..e67b794ab 100644 --- a/app/validators/status_length_validator.rb +++ b/app/validators/status_length_validator.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class StatusLengthValidator < ActiveModel::Validator - MAX_CHARS = 500 + MAX_CHARS = 1024 def validate(status) return unless status.local? && !status.reblog? |