diff options
author | Daggertooth <dev@monsterpit.net> | 2018-04-15 01:49:23 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:20 -0500 |
commit | 5db1301d7a9046bd67175cf1995eefd2587ce60e (patch) | |
tree | 911736f19eff249b847bfa7ced992f5edfd7dd9e /app | |
parent | b8ef3027da052524fe4a45aeb6a020de82568547 (diff) |
Raise description text max length
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 4dcf54520..6e1b37bac 100644 --- a/app/models/media_attachment.rb +++ b/app/models/media_attachment.rb @@ -220,7 +220,7 @@ class MediaAttachment < ApplicationRecord end def prepare_description - self.description = description.strip[0...420] unless description.nil? + self.description = description.strip[0...666] unless description.nil? end def set_type_and_extension |