From 3799bc5330e720a116a3edb3d2fa241770cab064 Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Mon, 26 Mar 2018 23:42:54 +0200 Subject: [PATCH] Minor fix --- pages/explore/explorerelations/sequels.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pages/explore/explorerelations/sequels.go b/pages/explore/explorerelations/sequels.go index 36bad102..4d96ea9b 100644 --- a/pages/explore/explorerelations/sequels.go +++ b/pages/explore/explorerelations/sequels.go @@ -23,7 +23,10 @@ func Sequels(ctx *aero.Context) string { sequels := []*utils.AnimeWithRelatedAnime{} for anime := range arn.StreamAnime() { - if animeList.Contains(anime.ID) { + item := animeList.Find(anime.ID) + + // Ignore if user added the anime and it's not "Planned" status + if item != nil && item.Status != arn.AnimeListStatusPlanned { continue }