chore(lint): bump from v1.49.0 to v1.51.2

This commit is contained in:
Quentin McGaw
2023-02-26 15:07:11 +00:00
parent 7b5d5c3884
commit 9261dca8ab
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ func parseServerName(serverName string) (number uint16, err error) {
}
idString := serverName[i+1:]
idUint64, err := strconv.ParseUint(idString, 10, 16) //nolint:gomnd
idUint64, err := strconv.ParseUint(idString, 10, 16)
if err != nil {
return 0, fmt.Errorf("%w: %s", ErrInvalidIDInServerName, serverName)
}