IsNew() compares commit, not version

This commit is contained in:
Harvey Tindall
2021-03-07 17:24:45 +00:00
parent 21490faa9e
commit 7bd8fadf76

View File

@@ -201,7 +201,7 @@ func (ud *Updater) GetTag() (Tag, int, error) {
}
func (t *Tag) IsNew() bool {
return t.Version != version
return t.Version != commit
}
func (ud *Updater) getRelease() (release GHRelease, status int, err error) {