fix `i:am`/`we:are` signatures

staging
multiple creatures 2019-07-16 21:30:33 -05:00
parent 2089a78f82
commit 92406964f1
1 changed files with 3 additions and 3 deletions

View File

@ -65,10 +65,10 @@ class PostStatusService < BaseService
private
def set_footer_from_i_am
return if @footer.nil? || @options[:no_footer]
name = @account.vars['_they:are']
return if @footer.present? || @options[:no_footer]
name = @account.user.vars['_they:are']
return if name.blank?
@footer = @account.vars["_they:are:#{name}"]
@footer = @account.user.vars["_they:are:#{name}"]
end
def set_initial_visibility