diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-09-16 17:03:37 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-09-16 17:55:04 +0700 |
commit | 96816ceaa25c21cec7677e75dcddd7ffb42d83c3 (patch) | |
tree | 7d14925ffdc67390377efd5ece22304e71ced360 /lib/pleroma/notification.ex | |
parent | 4397a3fe4ac932a055901622b3c30a319997df6c (diff) | |
download | pleroma-96816ceaa25c21cec7677e75dcddd7ffb42d83c3.tar.gz |
Revert "Merge branch 'revert-4fabf83a' into 'develop'"
This reverts commit fe7fd331263007e0fb2877ef7370a09a9704da36, reversing
changes made to 4fabf83ad01352442906d79187aeab4c777f4df8.
Diffstat (limited to 'lib/pleroma/notification.ex')
-rw-r--r-- | lib/pleroma/notification.ex | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/pleroma/notification.ex b/lib/pleroma/notification.ex index b7c880c51..8012389ac 100644 --- a/lib/pleroma/notification.ex +++ b/lib/pleroma/notification.ex @@ -210,8 +210,10 @@ defmodule Pleroma.Notification do unless skip?(activity, user) do notification = %Notification{user_id: user.id, activity: activity} {:ok, notification} = Repo.insert(notification) - Streamer.stream("user", notification) - Streamer.stream("user:notification", notification) + + ["user", "user:notification"] + |> Streamer.stream(notification) + Push.send(notification) notification end |