Fixed lint error

This commit is contained in:
SUMUKHA-PK 2019-08-01 15:47:18 +05:30
parent 2fe6744f03
commit e20ba7d4fb
1 changed files with 1 additions and 1 deletions

View File

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