Spaces:
Paused
Paused
Update run.py
Browse files
run.py
CHANGED
|
@@ -63,8 +63,8 @@ def root():
|
|
| 63 |
return "Hello, this is a Stremio Addon providing HTTPS Stream for Italian Movies/Series, to install it add /manifest.json to the url and then add it into the Stremio search bar"
|
| 64 |
|
| 65 |
@app.get('/catalog/<type>/<id>.json')
|
| 66 |
-
print(f"Debug: Received request for /catalog/",type,id)
|
| 67 |
def addon_catalog(type, id):
|
|
|
|
| 68 |
if type != "tv":
|
| 69 |
print("Debug: Type is not 'tv'")
|
| 70 |
raise HTTPException(status_code=404)
|
|
|
|
| 63 |
return "Hello, this is a Stremio Addon providing HTTPS Stream for Italian Movies/Series, to install it add /manifest.json to the url and then add it into the Stremio search bar"
|
| 64 |
|
| 65 |
@app.get('/catalog/<type>/<id>.json')
|
|
|
|
| 66 |
def addon_catalog(type, id):
|
| 67 |
+
print(f"Debug: Received request for /catalog/",type,id)
|
| 68 |
if type != "tv":
|
| 69 |
print("Debug: Type is not 'tv'")
|
| 70 |
raise HTTPException(status_code=404)
|