repochecker: Update documentation URL

This commit is contained in:
nemunaire 2023-05-16 10:00:15 +02:00
commit d8458e5b49
2 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ func init() {
}
func checkUpdate() {
res, err := http.Get("https://srs.nemunai.re/repochecker.version")
res, err := http.Get("https://fic.srs.epita.fr/repochecker.version")
if err == nil {
defer res.Body.Close()
dec := json.NewDecoder(res.Body)
@ -25,7 +25,7 @@ func checkUpdate() {
var v int
if err := dec.Decode(&v); err == io.EOF || err == nil {
if v > version {
log.Println("Your repochecker version is outdated, please update it:\n https://srs.nemunai.re/fic-binaries/")
log.Println("Your repochecker version is outdated, please update it:\n https://fic.srs.epita.fr/fic-binaries/")
}
}
}