summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2018-08-06 08:15:18 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2018-08-06 08:22:17 +0000
commit1e1a29f084967586b412425a868240240ac833b8 (patch)
tree709d2f8836d0198ee3d3034826fd684c982ed635
parente49131bb7212ba5d1b79fc20c83223325a2e98c4 (diff)
downloadpleroma-1e1a29f084967586b412425a868240240ac833b8.tar.gz
pleroma-1e1a29f084967586b412425a868240240ac833b8.zip
activitypub: relay: fix up AS2 actor object
-rw-r--r--lib/pleroma/web/activity_pub/views/user_view.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pleroma/web/activity_pub/views/user_view.ex b/lib/pleroma/web/activity_pub/views/user_view.ex
index adfbcab49..6ecb8862e 100644
--- a/lib/pleroma/web/activity_pub/views/user_view.ex
+++ b/lib/pleroma/web/activity_pub/views/user_view.ex
@@ -20,8 +20,8 @@ defmodule Pleroma.Web.ActivityPub.UserView do
"@context" => "https://www.w3.org/ns/activitystreams",
"id" => user.ap_id,
"type" => "Application",
- "following" => "#{user.ap_id}/relay/following",
- "followers" => "#{user.ap_id}/relay/followers",
+ "following" => "#{user.ap_id}/following",
+ "followers" => "#{user.ap_id}/followers",
"inbox" => "#{user.ap_id}/inbox",
"name" => "Pleroma",
"summary" => "Virtual actor for Pleroma relay",