cmd/syncthing: Correct auto upgrade criteria (fixes #6701) (#6702)

This commit is contained in:
Jakob Borg
2020-06-02 11:38:39 +02:00
committed by GitHub
parent d9cb7e2739
commit bfc9478965
2 changed files with 5 additions and 1 deletions
+4
View File
@@ -200,3 +200,7 @@ func (opts OptionsConfiguration) MaxConcurrentIncomingRequestKiB() int {
// Roll with it.
return opts.RawMaxCIRequestKiB
}
func (opts OptionsConfiguration) ShouldAutoUpgrade() bool {
return opts.AutoUpgradeIntervalH > 0
}