diff --git a/cmd/syncthing/main.go b/cmd/syncthing/main.go index c202eeeb..c5d89858 100644 --- a/cmd/syncthing/main.go +++ b/cmd/syncthing/main.go @@ -786,10 +786,8 @@ func syncthingMain(runtimeOptions RuntimeOptions) { if opts.AutoUpgradeIntervalH > 0 { if noUpgrade { l.Infof("No automatic upgrades; STNOUPGRADE environment variable defined.") - } else if IsRelease { - go autoUpgrade(cfg) } else { - l.Infof("No automatic upgrades; %s is not a release version.", Version) + go autoUpgrade(cfg) } }