Handle deleted videos

This commit is contained in:
MMaker 2025-02-27 13:14:09 -05:00
parent 19befc9eb5
commit dd95661352
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

4
app.py
View File

@ -296,8 +296,8 @@ def proxy(video_id):
return Response("Video not found", status=404)
reason_code = params.get('reasonCode', '').upper()
if reason_code in ['HIDDEN_VIDEO']:
logger.warning(f"{video_id}: Video is hidden - returning 404")
if reason_code in ['HIDDEN_VIDEO', 'ADMINISTRATOR_DELETE_VIDEO']:
logger.warning(f"{video_id}: Video is hidden or deleted")
return Response("Video not found", status=404)
thumbnail_url = (