forked from AkkomaGang/akkoma
Allow nil attachments
This commit is contained in:
parent
fa40db6b5a
commit
33e7ae7637
1 changed files with 6 additions and 2 deletions
|
@ -919,9 +919,13 @@ def add_attributed_to(object) do
|
|||
end
|
||||
|
||||
def prepare_attachments(object) do
|
||||
attachments = case Map.get(object, "attachment", []) do
|
||||
[_ | _] = list -> list
|
||||
_ -> []
|
||||
end
|
||||
|
||||
attachments =
|
||||
object
|
||||
|> Map.get("attachment", [])
|
||||
attachments
|
||||
|> Enum.map(fn data ->
|
||||
[%{"mediaType" => media_type, "href" => href} = url | _] = data["url"]
|
||||
|
||||
|
|
Loading…
Reference in a new issue