From ed138fbe3e3594138d6d726b134d9b863bd5f3f0 Mon Sep 17 00:00:00 2001 From: dragongoose Date: Sat, 29 Jul 2023 20:57:23 -0400 Subject: [PATCH] Fix cursor --- extractor/twitch/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }