Spaces:
Paused
Paused
Commit
·
ec57f9e
1
Parent(s):
6c36952
debug
Browse files
app.py
CHANGED
@@ -70,6 +70,7 @@ def get_tv_show_api(title, season, episode):
|
|
70 |
for ep in tv_store_data[title][season]:
|
71 |
if episode in ep:
|
72 |
cache_path = tv_store_data[title][season][ep]
|
|
|
73 |
if os.path.exists(cache_path):
|
74 |
return send_from_directory(os.path.dirname(cache_path), os.path.basename(cache_path))
|
75 |
|
|
|
70 |
for ep in tv_store_data[title][season]:
|
71 |
if episode in ep:
|
72 |
cache_path = tv_store_data[title][season][ep]
|
73 |
+
print(cache_path)
|
74 |
if os.path.exists(cache_path):
|
75 |
return send_from_directory(os.path.dirname(cache_path), os.path.basename(cache_path))
|
76 |
|