Skip to content

Commit

Permalink
fix: update manifest for animes support
Browse files Browse the repository at this point in the history
  • Loading branch information
g0ldyy committed Jul 18, 2024
1 parent 7d78a7e commit 8ee3220
Showing 1 changed file with 26 additions and 7 deletions.
33 changes: 26 additions & 7 deletions comet/api/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,33 @@ async def manifest(b64config: str = None):

return {
"id": settings.ADDON_ID,
"version": "1.0.0",
"name": f"{settings.ADDON_NAME}{(' | ' + debrid_extension) if debrid_extension is not None else ''}",
"description": "Stremio's fastest torrent/debrid search add-on.",
"version": "1.0.0",
"catalogs": [],
"resources": [
{
"name": "stream",
"types": [
"movie",
"series"
],
"idPrefixes": [
"tt",
"kitsu"
]
}
],
"types": [
"movie",
"series",
"anime",
"other"
],
"logo": "https://i.imgur.com/jmVoVMu.jpeg",
"background": "https://i.imgur.com/WwnXB3k.jpeg",
"resources": ["stream"],
"types": ["movie", "series"],
"idPrefixes": ["tt"],
"catalogs": [],
"behaviorHints": {"configurable": True},
}
"behaviorHints": {
"configurable": True,
"configurationRequired": False
}
}

0 comments on commit 8ee3220

Please sign in to comment.