mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-14 00:08:46 +00:00
Validation of count works even when text of status is nil (#6429)
This commit is contained in:
@@ -23,6 +23,8 @@ class StatusLengthValidator < ActiveModel::Validator
|
|||||||
end
|
end
|
||||||
|
|
||||||
def countable_text(status)
|
def countable_text(status)
|
||||||
|
return '' if status.text.nil?
|
||||||
|
|
||||||
status.text.dup.tap do |new_text|
|
status.text.dup.tap do |new_text|
|
||||||
new_text.gsub!(FetchLinkCardService::URL_PATTERN, 'x' * 23)
|
new_text.gsub!(FetchLinkCardService::URL_PATTERN, 'x' * 23)
|
||||||
new_text.gsub!(Account::MENTION_RE, '@\2')
|
new_text.gsub!(Account::MENTION_RE, '@\2')
|
||||||
|
|||||||
Reference in New Issue
Block a user