diff options
| author | horus | 2022-10-25 20:55:21 +0200 |
|---|---|---|
| committer | horus | 2022-10-25 20:55:21 +0200 |
| commit | 90ccc0d97e96304d8d3c72eef810bc15b5a7bcb7 (patch) | |
| tree | 1a7319cc74a7f8736b505dcc14c7f5e237eb6677 /github.go | |
| parent | 8d3be0d8b623a405990448a5ea4fe471ab735ed7 (diff) | |
| download | ghrss-90ccc0d97e96304d8d3c72eef810bc15b5a7bcb7.tar.gz | |
Bugfix
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) |
