diff options
author | Ryan Huber <rhuber@gmail.com> | 2017-02-13 13:44:24 -0800 |
---|---|---|
committer | Ryan Huber <rhuber@gmail.com> | 2017-02-13 13:44:24 -0800 |
commit | d7e42876fac7e5797215023d8e46ae09724c6602 (patch) | |
tree | 60ee7ca06e0e1ddccca03c408bcd1414f4aa669e | |
parent | 2bc87a60a44e9b59f8ba3ddae7f43ef661a9f370 (diff) | |
download | wee-slack-d7e42876fac7e5797215023d8e46ae09724c6602.tar.gz |
only new new
-rw-r--r-- | wee_slack.py | 2 |
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 |