From a0741688383dac5575f5f8ca3715109dca206723 Mon Sep 17 00:00:00 2001 From: Arran Hobson Sayers Date: Sat, 28 Dec 2024 03:57:16 +0000 Subject: [PATCH] Fix linting --- goodreads/book.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goodreads/book.go b/goodreads/book.go index e354057..905c03c 100644 --- a/goodreads/book.go +++ b/goodreads/book.go @@ -14,7 +14,7 @@ import ( var ( // These are dirty workarounds, but they seem to work - alternativeCoverRegex = regexp.MustCompile(`^.*?[Aa]lternat(iv)?e cover.*?<\/i>`) + alternativeCoverRegex = regexp.MustCompile(`^.*?[Aa]lternat(iv)?e cover.*?`) breakTagRegex = regexp.MustCompile(``) lastBracketRegex = regexp.MustCompile(`^(.*)(\([^\(\)]*\))([^()]*)$`) )