mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
fix (status): wrong http status in app manifest
This commit is contained in:
parent
b1766b4fe0
commit
a2c0323e8d
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,7 @@ func AboutHandler(ctx *App, res http.ResponseWriter, req *http.Request) {
|
|||
}
|
||||
|
||||
func ManifestHandler(ctx *App, res http.ResponseWriter, req *http.Request) {
|
||||
res.WriteHeader(http.StatusFound)
|
||||
res.WriteHeader(http.StatusOK)
|
||||
res.Write([]byte(fmt.Sprintf(`{
|
||||
"name": "%s",
|
||||
"short_name": "%s",
|
||||
|
|
|
|||
Loading…
Reference in a new issue