Handle another reason code

This commit is contained in:
MMaker 2025-03-04 10:22:54 -05:00
parent a31d7d5a90
commit d8da55520f
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

2
app.py
View File

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