fix: missing variable

This commit is contained in:
Shiny Nematoda
2024-08-06 12:31:37 +00:00
parent 2dbf0d2274
commit 8a9a3f66e8
+1 -1
View File
@@ -23,7 +23,7 @@ type Next struct {
func parseNextSongs(n gjson.Result) []Item {
panel := n.Get("#.playlistPanelVideoRenderer")
size := np.Get("#").Int()
size := panel.Get("#").Int()
r := make([]Item, size)
wg := sync.WaitGroup{}