From 108f06aedec8834a314ed884f2795758a82fdb68 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Mon, 21 Feb 2022 13:45:40 +0530 Subject: Removed any max limit for offset argument, since MAL doesn't even support that --- user/anime/animelist.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'user/anime') diff --git a/user/anime/animelist.go b/user/anime/animelist.go index 01e0a0e..6516184 100644 --- a/user/anime/animelist.go +++ b/user/anime/animelist.go @@ -39,9 +39,10 @@ func (c Client)DeleteAnime(id int) string { // Get authenticated user's anime list func (c Client) GetAnimeList(user, status, sort string, limit, offset int) (a.AnimeList, error){ var userAnimeList a.AnimeList - // error handling for limit and offset - limitsErr := e.LimitsErrHandler(limit, offset, maxListLimit) - if limitsErr != nil { return userAnimeList, limitsErr + // error handling for limit + limitErr := e.LimitErrHandler(limit, maxListLimit) + if limitErr != nil { + return userAnimeList, limitErr } // checks if valid sort is specified -- cgit v1.2.3