X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fworkers%2Fweb_pusher_worker.ex;h=a978c4013d03837dca7fc24cec2166e1f6ff0ec7;hb=04a8ffbe84c6d40709860e75fffa0330a2db690f;hp=4c2591a5c32dc43f4f4877918f6257be9f510d0f;hpb=dd017c65a4b86501c435f5cb01804300e6b7c6dd;p=akkoma diff --git a/lib/pleroma/workers/web_pusher_worker.ex b/lib/pleroma/workers/web_pusher_worker.ex index 4c2591a5c..a978c4013 100644 --- a/lib/pleroma/workers/web_pusher_worker.ex +++ b/lib/pleroma/workers/web_pusher_worker.ex @@ -6,16 +6,15 @@ defmodule Pleroma.Workers.WebPusherWorker do alias Pleroma.Notification alias Pleroma.Repo - # Note: `max_attempts` is intended to be overridden in `new/2` call - use Oban.Worker, - queue: "web_push", - max_attempts: 1 - use Pleroma.Workers.WorkerHelper, queue: "web_push" @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