diff --git a/lib/config/config.go b/lib/config/config.go index 5d98e0b1f..97809f4b6 100644 --- a/lib/config/config.go +++ b/lib/config/config.go @@ -302,6 +302,10 @@ func convertV13V14(cfg *Configuration) { } cfg.Folders[i].DeprecatedReadOnly = false } + // v0.13-beta already had config version 13 but did not get the new URL + if cfg.Options.ReleasesURL == "https://api.github.com/repos/syncthing/syncthing/releases?per_page=30" { + cfg.Options.ReleasesURL = "https://upgrades.syncthing.net/meta.json" + } cfg.Version = 14 }