Spaces:
Paused
Paused
Update run.py
Browse files
run.py
CHANGED
|
@@ -81,6 +81,8 @@ def catalog():
|
|
| 81 |
|
| 82 |
@app.route('/stream/<type>/<id>.json')
|
| 83 |
def addon_stream(type, id):
|
|
|
|
|
|
|
| 84 |
logging.debug(f"Received request for type: {type}, id: {id}")
|
| 85 |
if type not in MANIFEST['types']: # Change this to "channel"
|
| 86 |
abort(404)
|
|
|
|
| 81 |
|
| 82 |
@app.route('/stream/<type>/<id>.json')
|
| 83 |
def addon_stream(type, id):
|
| 84 |
+
logging.debug(f"App debug mode: {app.debug}")
|
| 85 |
+
logging.debug(f"Received request for type: {type}, id: {id}")
|
| 86 |
logging.debug(f"Received request for type: {type}, id: {id}")
|
| 87 |
if type not in MANIFEST['types']: # Change this to "channel"
|
| 88 |
abort(404)
|