From e876a0541e68041d8f3f098b30565d6c3dab455a Mon Sep 17 00:00:00 2001 From: rht Date: Thu, 14 Oct 2021 15:26:47 -0400 Subject: [PATCH] Matrix bridge: Fix username typo. The sample username didn't quite match the format of actual Matrix usernames. --- zulip/integrations/bridge_with_matrix/matrix_bridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zulip/integrations/bridge_with_matrix/matrix_bridge.py b/zulip/integrations/bridge_with_matrix/matrix_bridge.py index 51f5b0d..7f70700 100644 --- a/zulip/integrations/bridge_with_matrix/matrix_bridge.py +++ b/zulip/integrations/bridge_with_matrix/matrix_bridge.py @@ -237,7 +237,7 @@ def write_sample_config(target_path: str, zuliprc: Optional[str]) -> None: OrderedDict( ( ("host", "https://matrix.org"), - ("username", "@username@matrix.org"), + ("username", "@username:matrix.org"), ("password", "password"), ("room_id", "#zulip:matrix.org"), )