aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Huber <rhuber@gmail.com>2017-02-09 08:35:13 -0800
committerRyan Huber <rhuber@gmail.com>2017-02-09 08:35:13 -0800
commit4300d68e7b4bcf450189350a585313ef8b0dabdf (patch)
treea0554fa64d11491362a26e1c2a369ec0dc1855b9
parente0f55196c9758a7e235a31234e2c2479acd3c203 (diff)
downloadwee-slack-4300d68e7b4bcf450189350a585313ef8b0dabdf.tar.gz
joinleave fix
-rw-r--r--wee_slack.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wee_slack.py b/wee_slack.py
index c81a050..4a60d96 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -2304,7 +2304,7 @@ def tag(tagset, user=None):
if user:
default_tag = "nick_" + user
else:
- default_tag = ''
+ default_tag = 'nick_unknown'
tagsets = {
#when replaying something old
"backlog": "no_highlight,notify_none,logger_backlog_end",
@@ -2317,7 +2317,7 @@ def tag(tagset, user=None):
"dmfromme": "notify_none,log1,irc_privmsg",
#when this is a join/leave, attach for smart filter ala:
#if user in [x.strip() for x in w.prefix("join"), w.prefix("quit")]
- "joinleave": "irc_smart_filter",
+ "joinleave": "irc_smart_filter,no_highlight",
#catchall ?
"default": "notify_message,log1",
}