Browse Source

Fix some emojis in profile metadata labels are not emojified. (#11534)

pull/4/head
kedama 4 years ago
committed by Eugen Rochko
parent
commit
aebefc7ce9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/models/account.rb

+ 1
- 1
app/models/account.rb View File

@ -506,7 +506,7 @@ class Account < ApplicationRecord
end
def emojifiable_text
[note, display_name, fields.map(&:value)].join(' ')
[note, display_name, fields.map(&:name), fields.map(&:value)].join(' ')
end
def clean_feed_manager

Loading…
Cancel
Save