From 102c998028fbe6f6c7ed808870b677dfa13134d2 Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Sun, 18 Apr 2021 17:39:13 -0300 Subject: [PATCH] Fix incorrect OOC handler Fixes #462 --- handlers/bootstrap.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/bootstrap.go b/handlers/bootstrap.go index 1726686..61135d8 100644 --- a/handlers/bootstrap.go +++ b/handlers/bootstrap.go @@ -97,7 +97,7 @@ func Register(extend HandlerExtender) { }) r.HandleFunc("/ooc", func(rw http.ResponseWriter, r *http.Request) { - serveAsset(rw, r, "occ.html") + serveAsset(rw, r, "ooc.html") }).Methods("GET") r.HandleFunc("/503", func(rw http.ResponseWriter, r *http.Request) { serveAsset(rw, r, "503.html")