Stremio / stremio-addon-sdk

🧙 A Node.js SDK for creating and publishing Stremio add-ons
https://www.stremio.com/addon-sdk
MIT License
695 stars 182 forks source link

Stremio 1.5.6 for Android TV Discover Page is Blank #190

Closed ewwink closed 2 years ago

ewwink commented 2 years ago

torrentio and cinemeta are work but not other addon, are catalog addon structures different for TV?

jaruba commented 2 years ago

@ewwink The new TV app is the first of our apps to use the new Stremio Core so yes, it is handled differently.

Most common issues with catalogs are deserialisation errors, usually regarding meta.releaseInfo being integer instead of string (which is what it is in the docs), meta.released / meta.videos[].released not being set correctly to a ISO 8601 value or meta.id missing.

The new core is strict about the property types, it will fail if values are not set correctly, as they are stated in the docs.

ewwink commented 2 years ago

Thanks for your response, converting meta.releaseInfo to string solved the problem, my catalog addon are now showing in Home, but still in Discover for both cinemeta and my catolog not showing instead the page show EmptyContent

jaruba commented 2 years ago

@ewwink does that happen when u change filters? do the filter names include space? there is currently a bug in the new core regarding filters with spaces in the name, one core replaces them with "%20" and the other core replaces them with "+", if that's ur issue, we are already looking into it

nklhtv commented 2 years ago

Can you confirm the bug still exists in the dev release: https://stremio-development.netlify.app/

ewwink commented 2 years ago

solved, it default to Others category and I just know it can be scrolled to another category (movies, series, etc) thanks all.

tv-discover