diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-21 13:45:40 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-21 13:45:40 +0530 |
commit | 108f06aedec8834a314ed884f2795758a82fdb68 (patch) | |
tree | eb868558182cc44b54229a16947baa00db1a1a9a /user | |
parent | 244d42b40ca9eb2158c2a4e36a2ab183ea5afb73 (diff) |
Removed any max limit for offset argument, since MAL doesn't even support that
Diffstat (limited to 'user')
-rw-r--r-- | user/anime/animelist.go | 7 |
1 files changed, 4 insertions, 3 deletions
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 |