Skip to content

Commit

Permalink
Update core.py
Browse files Browse the repository at this point in the history
  • Loading branch information
g0ldyy authored Jan 3, 2025
1 parent de54134 commit a5ff4d4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions comet/api/core.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import PTT
import RTN
import random
import string

from fastapi import APIRouter, Request
from fastapi.responses import RedirectResponse
Expand Down Expand Up @@ -63,7 +61,7 @@ async def manifest(b64config: str = None):
debrid_extension = get_debrid_extension(config["debridService"])

return {
"id": f"{settings.ADDON_ID}.{''.join(random.choice(string.ascii_letters) for _ in range(4))}",
"id": settings.ADDON_ID,
"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",
Expand Down

0 comments on commit a5ff4d4

Please sign in to comment.