Compare commits

...

2 Commits

Author SHA1 Message Date
c9a6ef8006 Bump version
All checks were successful
Go Test / test (push) Successful in 34s
2025-01-18 00:28:22 +00:00
c6328acb1c Fix bug causing outdated PIS data to be marked as valid 2025-01-18 00:28:07 +00:00
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ import (
) )
// Version Constants // Version Constants
const versionNum string = "2024.11.6" const versionNum string = "2025.01.1"
const versionSuffix string = "" const versionSuffix string = ""
const Version string = versionNum + versionSuffix const Version string = versionNum + versionSuffix

View File

@ -56,7 +56,7 @@ func Check() {
} }
if oldMetadata != nil { if oldMetadata != nil {
if oldMetadata.LastVersion != apiResp.Name { if oldMetadata.LastVersion == apiResp.Name {
log.Info("PIS Data is up to date") log.Info("PIS Data is up to date")
return return
} }