TUN-3100 make updater report the right text

This commit is contained in:
Dalton
2020-06-17 17:33:19 +00:00
committed by Dalton Cherry
parent a1a8645294
commit 4f9cfa6542
+1 -1
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 {