From 07981e80909792956c3e7e24123bdc7666443c2f Mon Sep 17 00:00:00 2001 From: Igor Loskutov Date: Thu, 21 Aug 2025 01:21:25 -0400 Subject: [PATCH] fix: webvtt db null expectation mismatch (#556) --- server/reflector/db/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/reflector/db/search.py b/server/reflector/db/search.py index 553501c6..d60f81e5 100644 --- a/server/reflector/db/search.py +++ b/server/reflector/db/search.py @@ -45,7 +45,7 @@ SearchTotal = Annotated[ SearchTotalBase, Field(description="Total number of search results") ] -WEBVTT_SPEC_HEADER = "WEBVTT\n\n" +WEBVTT_SPEC_HEADER = "WEBVTT" WebVTTContent = Annotated[ str,