3
0
mirror of https://github.com/jlu5/PyLink.git synced 2024-12-24 11:42:51 +01:00

relay: make tag_nicks default to True

This commit is contained in:
James Lu 2016-07-11 23:35:16 -07:00
parent bced9506c3
commit 92466e4a00

View File

@ -106,7 +106,7 @@ def normalizeNick(irc, netname, nick, times_tagged=0, uid=''):
conf.conf.get('relay', {}).get('separator') or "/"
# Figure out whether we tag nicks by default or not.
if times_tagged == 0 and conf.conf.get('relay', {}).get('tag_nicks'):
if times_tagged == 0 and conf.conf.get('relay', {}).get('tag_nicks', True):
times_tagged = 1
log.debug('(%s) relay.normalizeNick: using %r as separator.', irc.name, separator)