fix(matrix): remove tuple default from allow_room_mentions

This commit is contained in:
liuZhou 2026-04-30 23:58:45 +08:00 committed by Xubin Ren
parent ad952e0da2
commit 73840b0af6

View File

@ -215,7 +215,7 @@ class MatrixConfig(Base):
allow_from: list[str] = Field(default_factory=list) allow_from: list[str] = Field(default_factory=list)
group_policy: Literal["open", "mention", "allowlist"] = "open" group_policy: Literal["open", "mention", "allowlist"] = "open"
group_allow_from: list[str] = Field(default_factory=list) group_allow_from: list[str] = Field(default_factory=list)
allow_room_mentions: bool = False, allow_room_mentions: bool = False
streaming: bool = False streaming: bool = False