diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-06 23:18:26 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-07-06 23:18:26 +0530 |
commit | 4dd68495f4d1e993af72d2a47530e85522b43a6e (patch) | |
tree | ed7d7ea7ee801f3e1ac4408a53d10599884c85b8 /user/manga/mangalist.go | |
parent | ecd8f9bd8ceb8aa041822dbc98d3ec85b85b343c (diff) |
Bug Fix: GetMangaList using anime validator func
Diffstat (limited to 'user/manga/mangalist.go')
-rw-r--r-- | user/manga/mangalist.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/manga/mangalist.go b/user/manga/mangalist.go index 7843432..91531b8 100644 --- a/user/manga/mangalist.go +++ b/user/manga/mangalist.go @@ -47,7 +47,7 @@ func (c Client) GetMangaList(user, status, sort string, limit, offset int, nsfw } // handle all the errors for the fields - fields, err := e.FieldsErrHandler(fields) + fields, err := e.MangaFieldsErrHandler(fields) if err != nil { return userMangaList, false, err } |