diff options
Diffstat (limited to 'github.go')
| -rw-r--r-- | github.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ func (app *App) ScrapeGithub(platform Platform) []Entry { entry := Entry{} owner := Owner{} - e.ForEach("h1", func(i int, e *colly.HTMLElement) { + e.ForEach("h2", func(i int, e *colly.HTMLElement) { entry.URL = e.ChildAttr("a", "href") owner.Name = strings.TrimSuffix(e.ChildText("a > span"), " /") owner.Name = strings.TrimSpace(owner.Name) |
