This commit is contained in:
Andrew Morgan 2019-01-30 11:59:03 +00:00
parent 2e135b1860
commit c3f65ede3b
1 changed files with 1 additions and 1 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
}