bridges: Remove sender field from message data.

For the reason why, see
https://chat.zulip.org/#narrow/stream/127-integrations/topic/bridge.20between.20zulips
This commit is contained in:
rht 2020-04-03 00:08:15 -04:00 committed by showell
parent 46c78ce7b5
commit 9ee8461b9d
2 changed files with 0 additions and 2 deletions

View file

@ -39,7 +39,6 @@ def create_pipe_event(to_client: zulip.Client, from_bot: Dict[str, Any],
# formatting purpose
msg["content"] = "\n" + msg["content"]
msg_data = {
"sender": to_client.email,
"type": "stream",
"to": to_bot["stream"],
"subject": subject,

View file

@ -81,7 +81,6 @@ def matrix_to_zulip(zulip_client, zulip_config, matrix_config, no_noise):
if not_from_zulip_bot and content:
try:
result = zulip_client.send_message({
"sender": zulip_client.email,
"type": "stream",
"to": zulip_config["stream"],
"subject": zulip_config["topic"],