Merge branch 'bugfix/notification-nil-actor' into 'develop'

notification_view.ex: Make sure `account` isn’t empty

See merge request pleroma/pleroma!1779
This commit is contained in:
lain 2019-10-04 11:28:20 +00:00
commit 01da6344b9
2 changed files with 38 additions and 28 deletions

View file

@ -100,5 +100,11 @@ defmodule Pleroma.Web.MastodonAPI.NotificationViewTest do
NotificationView.render("index.json", %{notifications: [notification], for: followed})
assert [expected] == result
User.perform(:delete, follower)
notification = Notification |> Repo.one() |> Repo.preload(:activity)
assert [] ==
NotificationView.render("index.json", %{notifications: [notification], for: followed})
end
end