Mercurial > minori
diff src/core/anime.cc @ 383:27c462bc7815
make the "Now Playing" page actually work
| author | Paper <paper@tflc.us> |
|---|---|
| date | Thu, 06 Nov 2025 07:10:58 -0500 |
| parents | 47c9f8502269 |
| children |
line wrap: on
line diff
--- a/src/core/anime.cc Thu Nov 06 03:16:55 2025 -0500 +++ b/src/core/anime.cc Thu Nov 06 07:10:58 2025 -0500 @@ -16,6 +16,21 @@ #include <iostream> namespace Anime { +/* FIXME need to parse relations data as well. + * + * For example + * A Certain Magical Index - 2x13.mkv + * How do we know which anime is the second season of + * "A Certain Magical Index"? We can't possibly know + * without relations data! + * + * A way to solve this would be to store prequel/sequel. + * This is sorta-kinda anime speak for seasons. We can + * then find when the prequels stop. HOWEVER, this isn't + * exactly fool proof, because there are shows with a + * second "season" that is actually a prequel, and may + * show up as one in relations data. So it's not as + * straightforward as one may think. */ /* User list data */ bool Anime::IsInUserList() const
