From 36e6c89329811da78a30aaccb90f633204294c13 Mon Sep 17 00:00:00 2001 From: crwxaj Date: Wed, 24 Jan 2024 13:51:50 +0100 Subject: [PATCH] scraper: Fix SLR covers --- pkg/scrape/slrstudios.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/scrape/slrstudios.go b/pkg/scrape/slrstudios.go index 659cf952a..f522b159c 100644 --- a/pkg/scrape/slrstudios.go +++ b/pkg/scrape/slrstudios.go @@ -67,7 +67,7 @@ func SexLikeReal(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out if len(coverURL) > 0 { sc.Covers = append(sc.Covers, coverURL) } else { - m := coverRegEx.FindStringSubmatch(strings.TrimSpace(e.ChildAttr(`.splash-screen`, "style"))) + m := coverRegEx.FindStringSubmatch(strings.TrimSpace(e.ChildAttr(`.c-webxr-splash-screen`, "style"))) if len(m) > 0 && len(m[1]) > 0 { sc.Covers = append(sc.Covers, m[1]) }