forked from AkkomaGang/akkoma
Merge branch 'fix-notification-warnings' into 'develop'
Fix notification warnings See merge request pleroma/pleroma!1683
This commit is contained in:
commit
7318095657
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue