diff options
Diffstat (limited to 'routes/webfinger.go')
-rw-r--r-- | routes/webfinger.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routes/webfinger.go b/routes/webfinger.go index 495e6c7..3d5fa63 100644 --- a/routes/webfinger.go +++ b/routes/webfinger.go @@ -24,7 +24,7 @@ func Webfinger(c *fiber.Ctx) error { if len(actorDomain) < 2 { c.Status(fiber.StatusBadRequest) - return c.Send([]byte("accpets only subject form of acct:board@instance")) + return c.Send([]byte("accepts only subject form of acct:board@instance")) } if actorDomain[0] == "main" { |