diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-05-18 16:38:42 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:50 -0500 |
commit | 23d2e5f97cbe44980a27685a6b9a80ddf0799245 (patch) | |
tree | 6579fcb89e6ee27df57b9a9ab81c4f3c8d1c949c /app/models | |
parent | e411b20711325219695007496ec8db545b67f209 (diff) |
fix bbdown newlines + format & emojify footers
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/status.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/models/status.rb b/app/models/status.rb index 895ac8fd6..5f25e86f6 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -251,6 +251,7 @@ class Status < ApplicationRecord fields = [spoiler_text, text] fields += preloadable_poll.options unless preloadable_poll.nil? + fields << footer unless footer.nil? @emojis = CustomEmoji.from_text(fields.join(' '), account.domain) end |