From 13e8fe7caa2a79f2678d9c709d6cb9265c10f542 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Sat, 15 Oct 2016 23:48:08 +0200 Subject: [PATCH] Fixed !!pl --- src/NadekoBot/Services/Impl/GoogleApiService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;