From 1b7ed510604fe66f367e84f99e5509c89cb2bb4e Mon Sep 17 00:00:00 2001 From: stefanodvx <69367859+stefanodvx@users.noreply.github.com> Date: Thu, 24 Apr 2025 12:29:42 +0200 Subject: [PATCH] threads: fixed captions --- ext/threads/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/threads/util.go b/ext/threads/util.go index b3d5713..8a0f90c 100644 --- a/ext/threads/util.go +++ b/ext/threads/util.go @@ -42,7 +42,7 @@ func ParseEmbedMedia( contentURL := ctx.MatchedContentURL var caption string - doc.Find(".BodyContainerNoThreadLine .BodyTextContainer span").Each(func(i int, c *goquery.Selection) { + doc.Find(".BodyTextContainer").Each(func(i int, c *goquery.Selection) { caption = c.Text() })