mirror of
https://codeberg.org/SafeTwitch/safetwitch-backend.git
synced 2024-12-21 20:53:00 -05:00
Fix cursor
This commit is contained in:
parent
05f86dfd6b
commit
ed138fbe3e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue