Update app.py
Browse files
app.py
CHANGED
@@ -324,7 +324,8 @@ def extract_video_info(video_url: str) -> str:
|
|
324 |
title = title.lower()
|
325 |
# Replace spaces with hyphens
|
326 |
title = title.strip().replace(' ', '-')
|
327 |
-
|
|
|
328 |
return p_result
|
329 |
else:
|
330 |
return result
|
|
|
324 |
title = title.lower()
|
325 |
# Replace spaces with hyphens
|
326 |
title = title.strip().replace(' ', '-')
|
327 |
+
logger.info(title)
|
328 |
+
p_result = await process_url(title)
|
329 |
return p_result
|
330 |
else:
|
331 |
return result
|