fix(matrix-bridge): fix _SoakMatrixClient.mark_seen signature for inject endpoint

Made-with: Cursor
This commit is contained in:
Apple
2026-03-05 07:55:04 -08:00
parent 84cb7e51bc
commit f70a824f6a

View File

@@ -871,7 +871,7 @@ async def debug_inject_event(body: Dict[str, Any]) -> Dict[str, Any]:
def __init__(self) -> None: # noqa: D107
pass # skip real __init__
async def mark_seen(self, room_id: str, event_id: str) -> None: # type: ignore[override]
def mark_seen(self, event_id: str) -> None: # type: ignore[override]
pass
async def send_text(self, room_id: str, text: str, # type: ignore[override]