From 0398ca247f06f8ad947cd7a1dd19a62145efea95 Mon Sep 17 00:00:00 2001 From: ymq Date: Wed, 12 Aug 2026 11:16:25 +0800 Subject: [PATCH] fix: autoplay true -> True (Python syntax) --- wwwroot/knowledge_bases_list/search_result.dspy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wwwroot/knowledge_bases_list/search_result.dspy b/wwwroot/knowledge_bases_list/search_result.dspy index 1d7646f..5feaff1 100644 --- a/wwwroot/knowledge_bases_list/search_result.dspy +++ b/wwwroot/knowledge_bases_list/search_result.dspy @@ -250,7 +250,7 @@ else: ext = h["file_ext"] if ext in video_exts: if media_url: - card_subwidgets.append({"widgettype": "VideoPlayer", "options": {"url": media_url, "width": "100%", "autoplay": true}}) + card_subwidgets.append({"widgettype": "VideoPlayer", "options": {"url": media_url, "width": "100%", "autoplay": True}}) elif ext in audio_exts: if media_url: card_subwidgets.append({"widgettype": "Html", "options": {"html": "", "padding": "4px 0"}})