forked from AkkomaGang/akkoma
Linting.
This commit is contained in:
parent
600f428db4
commit
07277879e5
1 changed files with 4 additions and 1 deletions
|
@ -20,7 +20,10 @@ defmodule Pleroma.Web.Push.Impl do
|
||||||
|
|
||||||
@doc "Performs sending notifications for user subscriptions"
|
@doc "Performs sending notifications for user subscriptions"
|
||||||
@spec perform_send(Notification.t()) :: list(any)
|
@spec perform_send(Notification.t()) :: list(any)
|
||||||
def perform_send(%{activity: %{data: %{"type" => activity_type}, id: activity_id}, user_id: user_id} = notif)
|
def perform_send(
|
||||||
|
%{activity: %{data: %{"type" => activity_type}, id: activity_id}, user_id: user_id} =
|
||||||
|
notif
|
||||||
|
)
|
||||||
when activity_type in @types do
|
when activity_type in @types do
|
||||||
actor = User.get_cached_by_ap_id(notif.activity.data["actor"])
|
actor = User.get_cached_by_ap_id(notif.activity.data["actor"])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue