mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-27 01:18:18 +00:00
common api: fetch visibility from normalized object
This commit is contained in:
parent
0522b26883
commit
d6b266163b
1 changed files with 4 additions and 1 deletions
|
@ -64,7 +64,10 @@ defmodule Pleroma.Web.CommonAPI do
|
|||
"public"
|
||||
|
||||
inReplyTo ->
|
||||
Pleroma.Web.MastodonAPI.StatusView.get_visibility(inReplyTo.data["object"])
|
||||
# XXX: these heuristics should be moved out of MastodonAPI.
|
||||
with %Object{} = object <- Object.normalize(inReplyTo.data["object"]) do
|
||||
Pleroma.Web.MastodonAPI.StatusView.get_visibility(object.data)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue