aboutsummaryrefslogtreecommitdiffstats
path: root/wee_slack.py
diff options
context:
space:
mode:
Diffstat (limited to 'wee_slack.py')
-rw-r--r--wee_slack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py
index 79e9bbc..637e0f5 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -1114,7 +1114,7 @@ class SlackChannel(object):
ts = SlackTS(timestamp)
last_read = SlackTS(self.last_read)
#without this, DMs won't open automatically
- if not self.channel_buffer and ts >= last_read:
+ if not self.channel_buffer and ts > last_read:
self.open(update_remote=False)
if self.channel_buffer:
#backlog messages - we will update the read marker as we print these