From e7176e8dd01b6b55fa984015bfeefe20a7eb0bdc Mon Sep 17 00:00:00 2001 From: Mason Fish Date: Mon, 24 Sep 2018 16:51:05 -0700 Subject: [PATCH] fix subscription filter Signed-off-by: Mason Fish (cherry picked from commit a31b20d7dbce383f94c87583e483d81a9809a42d) Signed-off-by: Sebastiaan van Stijn --- internal/licenseutils/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/licenseutils/utils.go b/internal/licenseutils/utils.go index d9503dc652..939c9c0b1e 100644 --- a/internal/licenseutils/utils.go +++ b/internal/licenseutils/utils.go @@ -102,7 +102,7 @@ func (u HubUser) GetAvailableLicenses(ctx context.Context) ([]LicenseDisplay, er // Filter out expired licenses i := 0 for _, s := range subs { - if s.State != "expired" && s.Expires != nil { + if s.State == "active" && s.Expires != nil { owner := "" if s.DockerID == u.User.ID { owner = u.User.Username