TUN-3100 make updater report the right text

This commit is contained in:
Dalton 2020-06-16 17:20:09 -05:00 committed by Dalton Cherry
parent a1a8645294
commit 4f9cfa6542
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ type UpdateOutcome struct {
}
func (uo *UpdateOutcome) noUpdate() bool {
return uo.Error != nil && uo.Updated == false
return uo.Error == nil && uo.Updated == false
}
func checkForUpdateAndApply() UpdateOutcome {