diff options
author | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-24 20:39:40 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@protonmail.ch> | 2022-02-24 20:39:40 +0530 |
commit | e4f90575f920cbd429814dfc27a775c0666bf718 (patch) | |
tree | f9b72a743c2a79f532ddd655259d5207821fa9e4 /user/anime/animelist.go | |
parent | 0f321b7c4691923ead42a9b020da98dce1196d07 (diff) |
error fix: refer to commit 58 in main
Diffstat (limited to 'user/anime/animelist.go')
-rw-r--r-- | user/anime/animelist.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/anime/animelist.go b/user/anime/animelist.go index 6516184..b27efc0 100644 --- a/user/anime/animelist.go +++ b/user/anime/animelist.go @@ -77,7 +77,7 @@ func (c Client) GetAnimeList(user, status, sort string, limit, offset int) (a.An var animes []a.Anime for _, element := range animeListData.Data { a := element.Anime - a.MyListStatus = element.ListStatus + a.ListStatus = element.ListStatus animes = append(animes, a) } |