fix: don't warn users when checking for updates fails

This commit is contained in:
James Houlahan
2021-01-13 11:49:30 +01:00
parent 4013892a47
commit debf015dd0
2 changed files with 0 additions and 2 deletions

View File

@ -143,7 +143,6 @@ func checkAndHandleUpdate(u types.Updater, f frontend.Frontend, autoUpdate bool)
version, err := u.Check()
if err != nil {
logrus.WithError(err).Error("An error occurred while checking for updates")
f.NotifySilentUpdateError(err)
return
}

View File

@ -91,7 +91,6 @@ func checkAndHandleUpdate(u types.Updater, f frontend.Frontend, autoUpdate bool)
version, err := u.Check()
if err != nil {
logrus.WithError(err).Error("An error occurred while checking for updates")
f.NotifySilentUpdateError(err)
return
}