diff --git a/web.go b/web.go index c7b447a..95687c3 100644 --- a/web.go +++ b/web.go @@ -84,9 +84,15 @@ func redirect(w http.ResponseWriter, uUrl string) { w.Header().Set("Cache-Control", *cacheCtl) w.WriteHeader(302) - w.Write([]byte(`
- Go here... - + u := html.EscapeString(uUrl) + w.Write([]byte(` + + + + + If you see this, your browser did not redirect. Click here... + + `)) }