stremio-core
stremio-core copied to clipboard
Addon Subtitle Handler not firing anymore
I built an addon that uses the subtitle handler to track when somebody watched something.
It used to work just fine, but now the http request is not being called anymore. I dont know when this changed, since im using a different method.
I didnt change anything. I can see in the chrome dev tools that no request is being attempted.
I have the manifest like this
{
"id": "medialib.stremio",
"logo": "https://files.medialib.net/avatars/medialib-logo.png",
"version": "0.1.1",
"name": "MediaLib",
"description": "Integration with MediaLib.net to turn collections & recommendations into catalogs and track your watch history automatically.",
"types": [
"movie",
"series"
],
"catalogs": [
{
"type": "MediaLib",
"id": "recs",
"name": "Recommendations - Movies"
},
{
"type": "MediaLib",
"id": "recsTv",
"name": "Recommendations - Tv"
}
],
"resources": [
"catalog",
"meta",
"subtitles"
],
"idPrefixes": [],
}
and my url is /{userId}/subtitles/{type}/{id}/{extras}.json
Any help? Did something change?