hotfix/server: fix participants loading on old meetings

This commit is contained in:
2023-12-01 18:18:09 +01:00
parent 689ceb8ffd
commit 84a1350df7

View File

@@ -133,7 +133,7 @@ class Transcript(BaseModel):
long_summary: str | None = None
topics: list[TranscriptTopic] = []
events: list[TranscriptEvent] = []
participants: list[TranscriptParticipant] = []
participants: list[TranscriptParticipant] | None = []
source_language: str = "en"
target_language: str = "en"
share_mode: Literal["private", "semi-private", "public"] = "private"