diff options
Diffstat (limited to 'github.go')
| -rw-r--r-- | github.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ func (app *App) ScrapeGithub(platform Platform) []Entry { entry.Synopsis = e.Text }) - e.ForEach("div.text-gray > a.muted-link", func(i int, e *colly.HTMLElement) { + e.ForEach("a.Link--muted.d-inline-block.mr-3", func(i int, e *colly.HTMLElement) { if strings.Contains(e.Attr("href"), "stargazers") { stars := strings.TrimSpace(strings.Replace(e.Text, ",", "", -1)) entry.Stars, err = strconv.Atoi(stars) |
