diff options
author | lain <lain@soykaf.club> | 2020-05-07 11:01:52 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-05-07 11:01:52 +0000 |
commit | 8ae4d64d475405f8ff98868b80fc71fbe74b45bc (patch) | |
tree | ba1669f6e7b1127f92072008940a897b64723da3 | |
parent | f57fa2a00df2d93eba53c1ff3ab5c7d5fabb8308 (diff) | |
download | pleroma-8ae4d64d475405f8ff98868b80fc71fbe74b45bc.tar.gz |
Apply suggestion to lib/pleroma/notification.ex
-rw-r--r-- | lib/pleroma/notification.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/notification.ex b/lib/pleroma/notification.ex index b14e7c843..af49fd713 100644 --- a/lib/pleroma/notification.ex +++ b/lib/pleroma/notification.ex @@ -357,7 +357,7 @@ defmodule Pleroma.Notification do def get_notified_from_activity(_, _local_only), do: {[], []} - # For some actitivies, only notifity the author of the object + # For some activities, only notify the author of the object def get_potential_receiver_ap_ids(%{data: %{"type" => type, "object" => object_id}}) when type in ~w{Like Announce EmojiReact} do case Object.get_cached_by_ap_id(object_id) do |