include bio field keys in emojifiable text

staging
multiple creatures 2019-05-18 21:14:03 -05:00
parent 5e2a8f3d3c
commit c66d932c22
1 changed files with 1 additions and 1 deletions

View File

@ -582,7 +582,7 @@ class Account < ApplicationRecord
end
def emojifiable_text
[note, display_name, fields.map(&:value)].join(' ')
[note, display_name, fields.map { |f| "#{f.name} #{f.value}" }].join(' ')
end
def clean_feed_manager