From 11a14d768fe69516a916c620a9c6b02029fb1904 Mon Sep 17 00:00:00 2001 From: NipuniBhagya Date: Thu, 15 May 2025 11:14:34 +0530 Subject: [PATCH] Fix minor issue --- internal/util/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/util/version.go b/internal/util/version.go index 04ed2ce..f330016 100644 --- a/internal/util/version.go +++ b/internal/util/version.go @@ -8,7 +8,7 @@ import ( // This function checks if the given version date is after the spec cutover date func IsLatestSpec(versionDate time.Time, err error) bool { - return err == nil && !versionDate.After(constants.SpecCutoverDate) + return err == nil && versionDate.After(constants.SpecCutoverDate) } // This function parses a version string into a time.Time