From cf32370298596c8d83c31f792fa66672366f2768 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Fri, 11 Mar 2022 20:19:07 +0530 Subject: Bug Fix: GetSuggestedAnime max limit was set to 500 but it is actually 100 --- manga/manga.structs.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'manga') 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"` -- cgit v1.2.3