From e43a67b0d5eb664b7d6465d72429b7234b129029 Mon Sep 17 00:00:00 2001 From: MMaker Date: Sun, 30 Mar 2025 00:46:24 -0400 Subject: [PATCH] Add another reason code --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 977473d..a9b1c1a 100644 --- a/app.py +++ b/app.py @@ -305,7 +305,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', 'RIGHT_HOLDER_DELETE_VIDEO']: + if reason_code in ['HIDDEN_VIDEO', 'ADMINISTRATOR_DELETE_VIDEO', 'RIGHT_HOLDER_DELETE_VIDEO', 'DELETED_VIDEO']: logger.warning(f"{video_id}: Video is hidden or deleted ({reason_code}) - returning 404") return Response("Video not found", status=404)