Fix notification warnings

develop
Steven Fuchs 2019-09-17 18:12:27 +00:00 committed by rinpatch
parent 2301de3d75
commit 6193157f19
1 changed files with 5 additions and 1 deletions

View 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