forked from AkkomaGang/akkoma
MastoAPI: Also return text_url in attachments.
This commit is contained in:
parent
7f3ce5c1a0
commit
6258c6b6b3
2 changed files with 3 additions and 1 deletions
|
@ -73,6 +73,7 @@ def render("attachment.json", %{attachment: attachment}) do
|
|||
url: href,
|
||||
remote_url: href,
|
||||
preview_url: href,
|
||||
text_url: href,
|
||||
type: type
|
||||
}
|
||||
end
|
||||
|
|
|
@ -71,7 +71,8 @@ test "attachments" do
|
|||
type: "image",
|
||||
url: "someurl",
|
||||
remote_url: "someurl",
|
||||
preview_url: "someurl"
|
||||
preview_url: "someurl",
|
||||
text_url: "someurl"
|
||||
}
|
||||
|
||||
assert expected == StatusView.render("attachment.json", %{attachment: object})
|
||||
|
|
Loading…
Reference in a new issue