diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2022-02-28 05:35:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 05:35:39 +0000 |
commit | 06425ac756f916bca10d0f8797cf575a77dcf69d (patch) | |
tree | 7b4df51906c714f83a2bdce710e218a5cbb6672e /manga/manga.go | |
parent | f44303ee9de8da4e330116d2c6e6048d59b52526 (diff) | |
parent | 38f7861cc533081aba7458ef52a25acdeddd1f16 (diff) |
Merge pull request #7 from MikunoNaka/user-mangalist
Added functionality to update manga lists
Diffstat (limited to 'manga/manga.go')
-rw-r--r-- | manga/manga.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manga/manga.go b/manga/manga.go index 35b3a3d..0fd7853 100644 --- a/manga/manga.go +++ b/manga/manga.go @@ -28,7 +28,7 @@ import ( const BASE_URL string = "https://api.myanimelist.net/v2/manga" // MAL Might change this -const maxMangaLimit int = 100 +const maxMangaLimit int = 500 // in MAL documentation this is named Get Manga List func (c Client) SearchManga(searchString string, limit, offset int, fields []string) (MangaSearch, error) { |