diff --git a/extractor/twitch/parser.go b/extractor/twitch/parser.go index 6110d49..6faea93 100644 --- a/extractor/twitch/parser.go +++ b/extractor/twitch/parser.go @@ -111,7 +111,7 @@ func ParseCategory(data gjson.Result) (structs.CategoryPreview, error) { Viewers: int(data.Get("node.viewersCount").Int()), CreatedAt: data.Get("node.originalReleaseDate").Time(), Tags: parsedTags, - Cursor: data.Get("node.cursor").String(), + Cursor: data.Get("cursor").String(), Image: extractor.ProxyUrl(data.Get("node.avatarURL").String()), }, nil }