forked from treehouse/mastodon
Fix `pinned` attribute not being set for private self-posts (#17304)
parent
14f436c457
commit
c60f8ce032
|
@ -122,7 +122,7 @@ class REST::StatusSerializer < ActiveModel::Serializer
|
||||||
current_user? &&
|
current_user? &&
|
||||||
current_user.account_id == object.account_id &&
|
current_user.account_id == object.account_id &&
|
||||||
!object.reblog? &&
|
!object.reblog? &&
|
||||||
%w(public unlisted).include?(object.visibility)
|
%w(public unlisted private).include?(object.visibility)
|
||||||
end
|
end
|
||||||
|
|
||||||
def source_requested?
|
def source_requested?
|
||||||
|
|
Loading…
Reference in New Issue