diff --git a/src/NadekoBot/Services/Impl/GoogleApiService.cs b/src/NadekoBot/Services/Impl/GoogleApiService.cs index c1df1513..712dc4a9 100644 --- a/src/NadekoBot/Services/Impl/GoogleApiService.cs +++ b/src/NadekoBot/Services/Impl/GoogleApiService.cs @@ -119,7 +119,7 @@ namespace NadekoBot.Services.Impl count -= toGet; var query = yt.PlaylistItems.List("contentDetails"); - query.MaxResults = count; + query.MaxResults = toGet; query.PlaylistId = playlistId; query.PageToken = nextPageToken;