From 8351162171111c63522b857d0ca336e550736e96 Mon Sep 17 00:00:00 2001 From: David Lougheed Date: Wed, 21 Aug 2024 13:48:54 -0400 Subject: [PATCH] feat(streaming): add "proxied" as a reason for a streaming 416 error --- bento_lib/streaming/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bento_lib/streaming/exceptions.py b/bento_lib/streaming/exceptions.py index 18e4758..0224d92 100644 --- a/bento_lib/streaming/exceptions.py +++ b/bento_lib/streaming/exceptions.py @@ -19,7 +19,7 @@ class StreamingException(Exception): pass -RangeNotSatisfiableReason = Literal["start>=length", "end>=length", "inverted", "overlap"] +RangeNotSatisfiableReason = Literal["start>=length", "end>=length", "inverted", "overlap", "proxied"] class StreamingRangeNotSatisfiable(StreamingException):