diff --git a/main.go b/main.go index b1cc1c3..6b1d83c 100644 --- a/main.go +++ b/main.go @@ -23,7 +23,7 @@ func main() { go func() { prefs, _ := utils.LoadPrefs() latest, notes, update, err := utils.CheckForUpdate(appVersion) - if err == nil && update && prefs.SuppressedUpdateVersion != latest { + if err == nil && update && latest != appVersion && prefs.SuppressedUpdateVersion != latest { checkbox := widget.NewCheck("Do not show this anymore", func(bool) {}) content := container.NewVBox( widget.NewLabel("A new version ("+latest+") is available!"),