aboutsummaryrefslogtreecommitdiff
path: root/routes/post.go
diff options
context:
space:
mode:
Diffstat (limited to 'routes/post.go')
-rw-r--r--routes/post.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/routes/post.go b/routes/post.go
index 7ed9e7d..1634346 100644
--- a/routes/post.go
+++ b/routes/post.go
@@ -31,8 +31,8 @@ func PostGet(ctx *fiber.Ctx) error {
re := regexp.MustCompile("f(\\w|[!@#$%^&*<>])+-(\\w|[!@#$%^&*<>])+")
- if re.MatchString(postId) { // if non local actor post
- name := activitypub.GetActorFollowNameFromPath(postId)
+ if re.MatchString(ctx.Path()) { // if non local actor post
+ name := activitypub.GetActorFollowNameFromPath(ctx.Path())
followActors, err := webfinger.GetActorsFollowFromName(actor, name)
if err != nil {