X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fnotification.ex;h=241d6a9e08d81a432ec03129fd4d0d457030966a;hb=f0745148a3126e3bc621170791a55713e929c682;hp=65e3265d4a175b2926e8bb27e247d95d4256d9c7;hpb=a743940463a7d0a7346f77792310dff6a98e7f31;p=akkoma diff --git a/lib/pleroma/notification.ex b/lib/pleroma/notification.ex index 65e3265d4..241d6a9e0 100644 --- a/lib/pleroma/notification.ex +++ b/lib/pleroma/notification.ex @@ -67,7 +67,7 @@ defmodule Pleroma.Notification do end end - def create_notifications(%Activity{id: id, data: %{"to" => to, "type" => type}} = activity) when type in ["Create", "Like", "Announce", "Follow"] do + def create_notifications(%Activity{id: _, data: %{"to" => _, "type" => type}} = activity) when type in ["Create", "Like", "Announce", "Follow"] do users = User.get_notified_from_activity(activity) notifications = Enum.map(users, fn (user) -> create_notification(activity, user) end)