Skip to content

Commit 62b489d

Browse files
authored
fix: change FormatUint base from 64 to 10 in preauthkeys list command (#2588)
1 parent 8c7e650 commit 62b489d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/headscale/cli/preauthkeys.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ var listPreAuthKeys = &cobra.Command{
112112
aclTags = strings.TrimLeft(aclTags, ",")
113113

114114
tableData = append(tableData, []string{
115-
strconv.FormatUint(key.GetId(), 64),
115+
strconv.FormatUint(key.GetId(), 10),
116116
key.GetKey(),
117117
strconv.FormatBool(key.GetReusable()),
118118
strconv.FormatBool(key.GetEphemeral()),

0 commit comments

Comments
 (0)