aboutsummaryrefslogtreecommitdiffstats
path: root/wee_slack.py
diff options
context:
space:
mode:
Diffstat (limited to 'wee_slack.py')
-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",
}