X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fpleroma%2Fworkers%2Fweb_pusher_worker.ex;h=a978c4013d03837dca7fc24cec2166e1f6ff0ec7;hb=b6f5b326e7b7b7e209a436190d28ac2a165cb057;hp=bea2baffb26d8dfc359c7abdcae3ced872ccfcf4;hpb=95a4a194173cb056c4ceeb422cbf8dfcdc234467;p=akkoma diff --git a/lib/pleroma/workers/web_pusher_worker.ex b/lib/pleroma/workers/web_pusher_worker.ex index bea2baffb..a978c4013 100644 --- a/lib/pleroma/workers/web_pusher_worker.ex +++ b/lib/pleroma/workers/web_pusher_worker.ex @@ -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, :user]) + Pleroma.Web.Push.Impl.perform(notification) end end