Explorar el Código

Fix Exception with Planned to watch AniList feed

Lucas Villeneuve hace 5 años
padre
commit
0a08bbaf41
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/anilist.py

+ 1 - 1
src/anilist.py

@@ -46,7 +46,7 @@ class MediaListStatus(Enum):
         if label.upper().startswith('READ') or \
             label.upper().startswith('WATCHED') :
             return MediaListStatus.CURRENT
-        elif label.upper().startswith('PLANNING'):
+        elif label.upper().startswith('PLANS'):
             return MediaListStatus.PLANNING
         elif label.upper().startswith('COMPLETED'):
             return MediaListStatus.COMPLETED