We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78fa1da commit b82f857Copy full SHA for b82f857
zulip/integrations/bridge_with_irc/irc_mirror_backend.py
@@ -51,6 +51,7 @@ def forward_to_irc(msg):
51
in_the_specified_stream = msg["display_recipient"] == self.stream
52
at_the_specified_subject = msg["subject"].casefold() == self.topic.casefold()
53
if in_the_specified_stream and at_the_specified_subject:
54
+ msg["content"] = ("@**%s**: " % msg["sender_full_name"]) + msg["content"]
55
send = lambda x: c.privmsg(self.channel, x)
56
else:
57
return
0 commit comments