mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-09-08 04:05:23 -04:00
Fix: Correct typo in challenge page title (main) (#174)
- Fixed a typo in the challenge page title, removing an unnecessary backslash. - Updated the index page title to "Making sure you're not a bot!". Signed-off-by: Jason Cameron <git@jasoncameron.dev>
This commit is contained in:
parent
eab62f7611
commit
feca1ddeea
@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Use `TrimSuffix` instead of `TrimRight` on containerbuild
|
- Use `TrimSuffix` instead of `TrimRight` on containerbuild
|
||||||
- Fix the startup logs to correctly show the address and port the server is listening on
|
- Fix the startup logs to correctly show the address and port the server is listening on
|
||||||
- Add [LibreJS](https://www.gnu.org/software/librejs/) banner to Anubis JavaScript to allow LibreJS users to run the challenge
|
- Add [LibreJS](https://www.gnu.org/software/librejs/) banner to Anubis JavaScript to allow LibreJS users to run the challenge
|
||||||
|
- Fixed a typo in the challenge page title.
|
||||||
- Disabled running integration tests on Windows hosts due to it's reliance on posix features (see [#133](https://github.com/TecharoHQ/anubis/pull/133#issuecomment-2764732309)).
|
- Disabled running integration tests on Windows hosts due to it's reliance on posix features (see [#133](https://github.com/TecharoHQ/anubis/pull/133#issuecomment-2764732309)).
|
||||||
|
|
||||||
## v1.15.0
|
## v1.15.0
|
||||||
|
@ -332,7 +332,7 @@ func (s *Server) MaybeReverseProxy(w http.ResponseWriter, r *http.Request) {
|
|||||||
func (s *Server) RenderIndex(w http.ResponseWriter, r *http.Request) {
|
func (s *Server) RenderIndex(w http.ResponseWriter, r *http.Request) {
|
||||||
handler := internal.NoStoreCache(
|
handler := internal.NoStoreCache(
|
||||||
templ.Handler(
|
templ.Handler(
|
||||||
web.Base("Making sure you\\'re not a bot!", web.Index()),
|
web.Base("Making sure you're not a bot!", web.Index()),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
handler.ServeHTTP(w, r)
|
handler.ServeHTTP(w, r)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user