From b97a09da377016c456a806d91693a6e348e9638d Mon Sep 17 00:00:00 2001 From: rramiachraf <51409801+rramiachraf@users.noreply.github.com> Date: Mon, 13 Mar 2023 20:16:02 +0100 Subject: [PATCH] fix: show error on cloudflare antibot page --- lyrics.go | 10 ++++++++++ static/style.css | 1 + 2 files changed, 11 insertions(+) diff --git a/lyrics.go b/lyrics.go index dcda46e..aa943f0 100644 --- a/lyrics.go +++ b/lyrics.go @@ -145,6 +145,16 @@ func lyricsHandler(w http.ResponseWriter, r *http.Request) { return } + cf := doc.Find(".cloudflare_content").Length() + if cf > 0 { + logger.Errorln("cloudflare got in the way") + render("error", w, map[string]string{ + "Status": "500", + "Error": "damn cloudflare, issue #21 on GitHub", + }) + return + } + var s song s.parse(doc) diff --git a/static/style.css b/static/style.css index 4b0ded4..2696a9e 100644 --- a/static/style.css +++ b/static/style.css @@ -245,6 +245,7 @@ footer a:hover { text-transform: uppercase; font-size: 1.6rem; color: #222; + text-align: center; } .main {