diff --git a/fanficfare/adapters/adapter_fictionlive.py b/fanficfare/adapters/adapter_fictionlive.py index 9057ab72..d5f561e2 100644 --- a/fanficfare/adapters/adapter_fictionlive.py +++ b/fanficfare/adapters/adapter_fictionlive.py @@ -418,7 +418,7 @@ class FictionLiveAdapter(BaseSiteAdapter): # so let's just ignore non-int values here if not isinstance(v, int): continue - if 0 <= v <= len(choices): + if 0 <= v < len(choices): output[v] += 1 return output