fix(matrix): remove tuple default from allow_room_mentions

This commit is contained in:
liuZhou
2026-05-01 19:41:58 +08:00
committed by Xubin Ren
parent ad952e0da2
commit 73840b0af6
+1 -1
View File
@@ -215,7 +215,7 @@ class MatrixConfig(Base):
allow_from: list[str] = Field(default_factory=list)
group_policy: Literal["open", "mention", "allowlist"] = "open"
group_allow_from: list[str] = Field(default_factory=list)
allow_room_mentions: bool = False,
allow_room_mentions: bool = False
streaming: bool = False