From 73840b0af66631333b821d75c90486125be242d1 Mon Sep 17 00:00:00 2001 From: liuZhou <2047379328@qq.com> Date: Thu, 30 Apr 2026 23:58:45 +0800 Subject: [PATCH] fix(matrix): remove tuple default from allow_room_mentions --- nanobot/channels/matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/channels/matrix.py b/nanobot/channels/matrix.py index 3a0fba8f1..b53ae8607 100644 --- a/nanobot/channels/matrix.py +++ b/nanobot/channels/matrix.py @@ -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