Update app.py
Browse files
app.py
CHANGED
@@ -311,7 +311,7 @@ async def extract_video_info(video_url: str) -> str:
|
|
311 |
title = title.lower()
|
312 |
# Replace spaces with hyphens
|
313 |
title = title.strip().replace(' ', '-')
|
314 |
-
p_result =
|
315 |
return p_result
|
316 |
else:
|
317 |
return result
|
|
|
311 |
title = title.lower()
|
312 |
# Replace spaces with hyphens
|
313 |
title = title.strip().replace(' ', '-')
|
314 |
+
p_result = process_url(title)
|
315 |
return p_result
|
316 |
else:
|
317 |
return result
|