Merge branch 'discard-invalid-likes' into 'develop'
Transmogrifier: fix incoming objects with invalid likes See merge request pleroma/pleroma!724
This commit is contained in:
commit
ea12371a01
|
@ -141,11 +141,11 @@ def fix_actor(%{"attributedTo" => actor} = object) do
|
||||||
|> Map.put("actor", get_actor(%{"actor" => actor}))
|
|> Map.put("actor", get_actor(%{"actor" => actor}))
|
||||||
end
|
end
|
||||||
|
|
||||||
def fix_likes(%{"likes" => likes} = object)
|
# Check for standardisation
|
||||||
when is_bitstring(likes) do
|
# This is what Peertube does
|
||||||
# Check for standardisation
|
# curl -H 'Accept: application/activity+json' $likes | jq .totalItems
|
||||||
# This is what Peertube does
|
# Prismo returns only an integer (count) as "likes"
|
||||||
# curl -H 'Accept: application/activity+json' $likes | jq .totalItems
|
def fix_likes(%{"likes" => likes} = object) when not is_map(likes) do
|
||||||
object
|
object
|
||||||
|> Map.put("likes", [])
|
|> Map.put("likes", [])
|
||||||
|> Map.put("like_count", 0)
|
|> Map.put("like_count", 0)
|
||||||
|
|
Loading…
Reference in New Issue