Instead of looping on items where we expect only one to be, we just use items[0]

This commit is contained in:
Benjamin Loison 2023-01-22 02:19:26 +01:00
parent 993d0b9771
commit d2391e5d54

View File

@ -313,10 +313,7 @@ void treatChannelOrVideo(unsigned short threadId, bool isChannel, string id, str
while(true)
{
json data = getJson(threadId, "channels?part=channels&id=" + id + (pageToken == "" ? "" : "&pageToken=" + pageToken), false, id),
items = data["items"];
for(const auto& item : items)
{
json channelSections = item["channelSections"];
channelSections = data["items"][0]["channelSections"];
for(const auto& channelSection : channelSections)
{
for(const auto& sectionChannel : channelSection["sectionChannels"])
@ -334,17 +331,14 @@ void treatChannelOrVideo(unsigned short threadId, bool isChannel, string id, str
}
else
{
goto breakChannelsTreatment;
break;
}
}
else
{
goto breakChannelsTreatment;
break;
}
}
}
breakChannelsTreatment:
;
// `COMMUNITY`
pageToken = "";
while(true)
@ -410,11 +404,9 @@ breakChannelsTreatment:
while(true)
{
json data = getJson(threadId, "channels?part=playlists&id=" + id + (pageToken == "" ? "" : "&pageToken=" + pageToken), false, id),
items = data["items"];
playlistSections = data["items"][0]["playlistSections"];
for(const auto& item : items)
{
for(const auto& playlistSection : item["playlistSections"])
for(const auto& playlistSection : playlistSections)
{
for(const auto& playlist : playlistSection["playlists"])
{
@ -464,7 +456,6 @@ breakChannelsTreatment:
}
}
}
}
if(!data["nextPageToken"].is_null())
{
pageToken = data["nextPageToken"];