diff options
author | lain <lain@soykaf.club> | 2021-01-07 11:09:18 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2021-01-07 11:09:18 +0000 |
commit | cf0eb0c1c5c945c660295f51c99fe157b2b8229c (patch) | |
tree | 9b9ad23ec0f83628db7f7878498e0382bec4cb1d /lib/pleroma/web/push/impl.ex | |
parent | 4d56aca9040f87708e38a050071aa9d3dc977c45 (diff) | |
parent | d44850d7a5d1303c1c9d185fc5eb6642823b3ec4 (diff) | |
download | pleroma-cf0eb0c1c5c945c660295f51c99fe157b2b8229c.tar.gz |
Merge branch 'object-normalize-refactor' into 'develop'
Object: Rework how Object.normalize works
See merge request pleroma/pleroma!3229
Diffstat (limited to 'lib/pleroma/web/push/impl.ex')
-rw-r--r-- | lib/pleroma/web/push/impl.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/push/impl.ex b/lib/pleroma/web/push/impl.ex index 82152dffa..a9c46f63a 100644 --- a/lib/pleroma/web/push/impl.ex +++ b/lib/pleroma/web/push/impl.ex @@ -32,7 +32,7 @@ defmodule Pleroma.Web.Push.Impl do mastodon_type = notification.type gcm_api_key = Application.get_env(:web_push_encryption, :gcm_api_key) avatar_url = User.avatar_url(actor) - object = Object.normalize(activity, false) + object = Object.normalize(activity, fetch: false) user = User.get_cached_by_id(user_id) direct_conversation_id = Activity.direct_conversation_id(activity, user) |