Don't break on empty mentions.
This commit is contained in:
parent
e477608b7e
commit
1a001588e8
3 changed files with 15 additions and 3 deletions
|
|
@ -346,4 +346,11 @@ defmodule Pleroma.Web.OStatusTest do
|
|||
|
||||
assert {:ok, %User{}} = OStatus.insert_or_update_user(data)
|
||||
end
|
||||
|
||||
test "it doesn't add nil in the do field" do
|
||||
incoming = File.read!("test/fixtures/nil_mention_entry.xml")
|
||||
{:ok, [activity]} = OStatus.handle_incoming(incoming)
|
||||
|
||||
assert activity.data["to"] == ["http://localhost:4001/users/atarifrosch@social.stopwatchingus-heidelberg.de/followers", "https://www.w3.org/ns/activitystreams#Public"]
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue