diff -r dbf49689af0d -r 0f96e3157b7f mod_bridge.py --- a/mod_bridge.py Thu Jan 15 19:06:14 2015 +0200 +++ b/mod_bridge.py Thu Jan 15 20:48:57 2015 +0200 @@ -90,6 +90,11 @@ for dest in Config.get_node('bridges').get_value (sourceName, []): try: + # Stuff some control characters into the name so that this doesn't cause people who + # are on both ends of the bridge to highlight themselves + # sender = sender[0:len(sender)/2] + (Irc.BoldChar * 2) + sender += '_' + clientName, channelName = dest.split ('/') Irc.get_client (clientName).privmsg (channelName, '[%s/%s] <%s> %s' % (bot.name, channel, sender, message))