Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relay
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pleroma
relay
Merge requests
!10
Fix wrong URI for the relay's followers collection
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Fix wrong URI for the relay's followers collection
Claire/relay:patch-1
into
master
Overview
0
Commits
1
Changes
1
Merged
Claire
requested to merge
Claire/relay:patch-1
into
master
5 years ago
Overview
0
Commits
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
eefef994
1 commit,
5 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
relay/actor.py
+
1
−
1
Options
@@ -193,7 +193,7 @@ async def handle_relay(actor, data, request):
message
=
{
"
@context
"
:
"
https://www.w3.org/ns/activitystreams
"
,
"
type
"
:
"
Announce
"
,
"
to
"
:
[
"
https://{}/
actor/
followers
"
.
format
(
request
.
host
)],
"
to
"
:
[
"
https://{}/followers
"
.
format
(
request
.
host
)],
"
actor
"
:
"
https://{}/actor
"
.
format
(
request
.
host
),
"
object
"
:
object_id
,
"
id
"
:
activity_id
Loading