mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
fix format uint (#4221)
This commit is contained in:
parent
cd275b7435
commit
15fef92c6e
1 changed files with 1 additions and 1 deletions
|
|
@ -605,7 +605,7 @@ func getHostsCommand() *cli.Command {
|
|||
query := url.Values{}
|
||||
query.Set("additional_info_filters", "*")
|
||||
if teamID := c.Uint("team"); teamID > 0 {
|
||||
query.Set("team_id", strconv.FormatUint(uint64(teamID), 64))
|
||||
query.Set("team_id", strconv.FormatUint(uint64(teamID), 10))
|
||||
}
|
||||
queryStr := query.Encode()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue