diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-03-11 20:19:07 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-03-11 20:19:07 +0530 |
commit | cf32370298596c8d83c31f792fa66672366f2768 (patch) | |
tree | a204cd1b4caab585ba7464130af0e3140edda6a8 /manga/manga.structs.go | |
parent | 6eb07bc323e04785b5031c8332643b243d63f073 (diff) |
Bug Fix: GetSuggestedAnime max limit was set to 500 but it is actually 100
Diffstat (limited to 'manga/manga.structs.go')
-rw-r--r-- | manga/manga.structs.go | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/manga/manga.structs.go b/manga/manga.structs.go index e863d00..6c5d570 100644 --- a/manga/manga.structs.go +++ b/manga/manga.structs.go @@ -45,17 +45,17 @@ type ListStatus struct { } type Manga struct { - Id int `json:"id"` - Title string `json:"title"` - MainPicture util.Picture `json:"main_picture"` - AltTitles util.AltTitles `json:"alternative_titles"` - StartDate string `json:"start_date"` - EndDate string `json:"end_date"` - Synopsis string `json:"synopsis"` - MeanScore float32 `json:"mean"` - Rank int `json:"rank"` - Popularity int `json:"popularity"` - NumListUsers int `json:"num_list_users"` + Id int `json:"id"` + Title string `json:"title"` + MainPicture util.Picture `json:"main_picture"` + AltTitles util.AltTitles `json:"alternative_titles"` + StartDate string `json:"start_date"` + EndDate string `json:"end_date"` + Synopsis string `json:"synopsis"` + MeanScore float32 `json:"mean"` + Rank int `json:"rank"` + Popularity int `json:"popularity"` + NumListUsers int `json:"num_list_users"` NsfwStatus string `json:"nsfw"` Genres []util.Genre `json:"genres"` CreatedAt string `json:"created_at"` |