aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMadison Smith2014-07-21 17:47:39 -0700
committerMadison Smith2014-07-21 17:47:39 -0700
commit10330cfdaefcd508311965c1ec8ff4a2f856229f (patch)
tree95d99a36bf2ba547746717109062abbdb0313cb8
parent0f9e9755e5fad68dd33631edca6a62cbef4274af (diff)
downloadpubnub-python-10330cfdaefcd508311965c1ec8ff4a2f856229f.tar.bz2
Ok with timetoken being same for different channels
-rw-r--r--Pubnub.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Pubnub.py b/Pubnub.py
index 8ab463b..dfe354a 100644
--- a/Pubnub.py
+++ b/Pubnub.py
@@ -722,7 +722,7 @@ class PubnubBase(object):
if message:
self.ds_action_list.append(message)
- if self.timetoken > self.ds_timetoken:
+ if self.timetoken >= self.ds_timetoken:
self.ds_timetoken = self.timetoken
if channel.startswith('pn_ds_'):
if message['action'] == 'update':