Run gofmt

This commit is contained in:
Reverite 2019-04-25 15:16:37 -07:00
parent 44bc4ee622
commit 4fb520ebac
2 changed files with 2 additions and 2 deletions

View File

@ -125,6 +125,6 @@ func ExtractUserLocalpart(userID string) (string, error) {
}
return strings.TrimPrefix(
strings.SplitN(userID, ":", 2)[0], // @foo:bar:8448 => [ "@foo", "bar:8448" ]
"@", // remove "@" prefix
"@", // remove "@" prefix
), nil
}