Another small change that should fix the caching problem.

This commit is contained in:
2020-12-02 20:06:28 +01:00
parent c21b66e0d9
commit cda32daacf
5 changed files with 25 additions and 23 deletions

View File

@@ -107,9 +107,13 @@ func indexHandler(w http.ResponseWriter, r *http.Request) {
testf()
data := VersionData{Version: "2.0.2",
Changelog: "Hopefully fixed the caching problem with random.",
data := VersionData{Version: "2.0.3",
Changelog: "Another small change that should fix the caching problem.",
History: []VersionData{
{
Version: "2.0.2",
Changelog: "Hopefully fixed the caching problem with random.",
},
{
Version: "2.0.1",
Changelog: "Fixed CORS",