From 869a6c111cdd75536f283ee52d0717f4682a706c Mon Sep 17 00:00:00 2001 From: tsmethurst Date: Sun, 27 Jun 2021 13:58:59 +0200 Subject: [PATCH] Go fmt --- internal/api/s2s/nodeinfo/nodeinfo.go | 2 +- internal/federation/handshake.go | 2 +- internal/util/regexes.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/api/s2s/nodeinfo/nodeinfo.go b/internal/api/s2s/nodeinfo/nodeinfo.go index 5febaf4..85617f5 100644 --- a/internal/api/s2s/nodeinfo/nodeinfo.go +++ b/internal/api/s2s/nodeinfo/nodeinfo.go @@ -32,7 +32,7 @@ const ( // NodeInfoWellKnownPath is the base path for serving responses to nodeinfo lookup requests. NodeInfoWellKnownPath = ".well-known/nodeinfo" // NodeInfoBasePath is the path for serving nodeinfo responses. - NodeInfoBasePath = "/nodeinfo/2.0" + NodeInfoBasePath = "/nodeinfo/2.0" ) // Module implements the FederationModule interface diff --git a/internal/federation/handshake.go b/internal/federation/handshake.go index af72040..511e3e1 100644 --- a/internal/federation/handshake.go +++ b/internal/federation/handshake.go @@ -11,7 +11,7 @@ func (f *federator) Handshaking(username string, remoteAccountID *url.URL) bool return false } - remoteIDs, ok := f.handshakes[username]; + remoteIDs, ok := f.handshakes[username] if !ok { // user isn't handshaking with anyone, bail return false diff --git a/internal/util/regexes.go b/internal/util/regexes.go index 13c3ce3..25d9041 100644 --- a/internal/util/regexes.go +++ b/internal/util/regexes.go @@ -61,7 +61,7 @@ var ( userPathRegex = regexp.MustCompile(userPathRegexString) userPublicKeyPathRegexString = fmt.Sprintf(`^?/%s/(%s)/%s`, UsersPath, usernameRegexString, PublicKeyPath) - userPublicKeyPathRegex = regexp.MustCompile(userPublicKeyPathRegexString) + userPublicKeyPathRegex = regexp.MustCompile(userPublicKeyPathRegexString) inboxPathRegexString = fmt.Sprintf(`^/?%s/(%s)/%s$`, UsersPath, usernameRegexString, InboxPath) // inboxPathRegex parses a path that validates and captures the username part from eg /users/example_username/inbox