IsNew() compares commit, not version

This commit is contained in:
Harvey Tindall 2021-03-07 17:24:45 +00:00
parent 21490faa9e
commit 7bd8fadf76
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2
1 changed files with 1 additions and 1 deletions

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) {