diff --git a/server/forum_indexer.go b/server/forum_indexer.go index 42636d6..6e2577c 100644 --- a/server/forum_indexer.go +++ b/server/forum_indexer.go @@ -136,7 +136,7 @@ func ScrapeForumPosts(doc *goquery.Document, timezone *time.Location) ([]*ForumP err := error(nil) - doc.Find(".forumPostListTable tr").EachWithBreak(func(i int, sel *goquery.Selection) bool { + doc.Find(".forumPostListTable > tbody > tr").EachWithBreak(func(i int, sel *goquery.Selection) bool { post := &ForumPost{ Poster: sel.Find(".post_by_account").Text(), }