Merge branch 'fix-notification-filtering' into 'develop'
Notifications: Never return `nil` in the notification list. See merge request pleroma/pleroma!2705
This commit is contained in:
commit
7bb3618939
2 changed files with 11 additions and 0 deletions
|
|
@ -367,6 +367,7 @@ defmodule Pleroma.Notification do
|
|||
do_send = do_send && user in enabled_receivers
|
||||
create_notification(activity, user, do_send)
|
||||
end)
|
||||
|> Enum.reject(&is_nil/1)
|
||||
|
||||
{:ok, notifications}
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue