This commit is contained in:
Peter Kleiweg
2026-06-10 13:31:55 +02:00
parent d7adc17d4b
commit a8bea0ab44
4 changed files with 10 additions and 10 deletions

View File

@@ -278,8 +278,8 @@ func doArticle(filename string, url string, title string, timestamp time.Time, n
specials, err := article.Search(`.//*[@data-content-type="GROUP"]`)
p(err)
for _, special := range specials {
special.Remove()
for i := len(specials) - 1; i >= 0; i-- {
specials[i].Remove()
}
other, err := article.Search(`.//*[@data-content-type="PODCAST"]`)