1
0
Fork 0

[golang] fix lint warnings

This commit is contained in:
Julien Dessaux 2025-03-28 22:03:37 +01:00
parent befa188552
commit e3541e4e7f
Signed by: adyxax
GPG key ID: F92E51B86E07177E
4 changed files with 7 additions and 16 deletions

View file

@ -59,7 +59,7 @@ func (c *Client) Navigate(s *model.Ship, waypointSymbol string) error {
select {
case <-c.ctx.Done():
return fmt.Errorf("failed: context cancelled")
case <-time.After(s.Nav.Route.Arrival.Sub(time.Now())):
case <-time.After(time.Until(s.Nav.Route.Arrival)):
}
s.Nav.Status = "IN_ORBIT"
return nil