sprinkle some First()s

master
magical 2021-12-31 22:29:06 +00:00
parent df2ebd5b6a
commit a606a15903
1 changed files with 3 additions and 3 deletions

View File

@ -160,15 +160,15 @@ func parseMicroformats(r io.Reader) (*MastoFeed, error) {
}
feed.Title = doc.Find(".h-feed > .p-name").First().AttrOr("value", "")
doc.Find(".h-feed").Find(".h-entry, .h-cite").Each(func(i int, elem *goquery.Selection) {
cw := strings.TrimSpace(text(elem.Find(".p-summary")))
cw := strings.TrimSpace(text(elem.Find(".p-summary").First()))
if cw != "" {
cw = "[" + cw + "] "
}
feed.Items = append(feed.Items, &MastoItem{
Title: "",
Content: cw + text(elem.Find(".e-content")),
Content: cw + text(elem.Find(".e-content").First()),
Link: elem.Find("a.u-url.u-uid").AttrOr("href", ""),
Author: text(elem.Find(".p-author .p-name")),
Author: text(elem.Find(".p-author .p-name").First()),
PublishedString: elem.Find("data.dt-published").AttrOr("value", ""),
IsBoost: elem.HasClass("h-cite"),
})