diff --git a/route/v2/zerotier.go b/route/v2/zerotier.go index 3e54aeb..9544cc5 100644 --- a/route/v2/zerotier.go +++ b/route/v2/zerotier.go @@ -62,7 +62,7 @@ func (s *CasaOS) GetZerotierInfo(ctx echo.Context) error { via := gjson.GetBytes(res, "routes.0.via").Str info.Id = utils.Ptr(gjson.GetBytes(res, "id").Str) info.Name = &name - if len(via) != 0 { + if len(via) == 0 { info.Status = utils.Ptr("online") } else { info.Status = utils.Ptr("offline")