Fix notification warnings
authorSteven Fuchs <steven.fuchs@dockyard.com>
Tue, 17 Sep 2019 18:12:27 +0000 (18:12 +0000)
committerrinpatch <rinpatch@sdf.org>
Tue, 17 Sep 2019 18:12:27 +0000 (18:12 +0000)
lib/pleroma/workers/web_pusher_worker.ex

index bea2baffb26d8dfc359c7abdcae3ced872ccfcf4..61b451e3ed99aecd8fb7bdee08c084b0138bf74f 100644 (file)
@@ -10,7 +10,11 @@ defmodule Pleroma.Workers.WebPusherWorker do
 
   @impl Oban.Worker
   def perform(%{"op" => "web_push", "notification_id" => notification_id}, _job) do
-    notification = Repo.get(Notification, notification_id)
+    notification =
+      Notification
+      |> Repo.get(notification_id)
+      |> Repo.preload([:activity])
+
     Pleroma.Web.Push.Impl.perform(notification)
   end
 end