[fix] c3tv: crashes on missing description (#6752)

This commit is contained in:
Bnyro
2026-09-18 11:22:34 +02:00
parent 591ad564a9
commit 49064747a2

View File

@@ -52,7 +52,7 @@ def response(resp: "SXNG_Response") -> EngineResults:
res.types.Video(
url=item["frontend_link"],
title=item["title"],
content=item["description"],
content=item["description"] or "",
thumbnail=item["thumb_url"],
publishedDate=publishedDate,
length=datetime.timedelta(seconds=item["length"]),