From e8a52f9c590e9cf35a4554fac3d4c084c0d04c6e Mon Sep 17 00:00:00 2001 From: Loweel Date: Sun, 4 May 2025 04:05:15 +0200 Subject: [PATCH] Jpg URL fissato --- rss-xml.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rss-xml.go b/rss-xml.go index 342ed83..56d335b 100644 --- a/rss-xml.go +++ b/rss-xml.go @@ -36,7 +36,7 @@ func generateRSS() error { epBaseUrl := baseURL + "/audio/" + filepath.Base(ep.File) - strip, found := strings.CutSuffix(epBaseUrl, ".mp3") + strip, found := strings.CutSuffix(filepath.Base(ep.File), ".mp3") if !found { log.Println("Seems the file is not mp3??????") }