From 2bc87a60a44e9b59f8ba3ddae7f43ef661a9f370 Mon Sep 17 00:00:00 2001 From: Ryan Huber Date: Mon, 13 Feb 2017 13:43:25 -0800 Subject: derp --- wee_slack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wee_slack.py') diff --git a/wee_slack.py b/wee_slack.py index 406400a..79e9bbc 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 -- cgit