diff options
| author | Madison Smith | 2014-07-21 17:47:39 -0700 |
|---|---|---|
| committer | Madison Smith | 2014-07-21 17:47:39 -0700 |
| commit | 10330cfdaefcd508311965c1ec8ff4a2f856229f (patch) | |
| tree | 95d99a36bf2ba547746717109062abbdb0313cb8 | |
| parent | 0f9e9755e5fad68dd33631edca6a62cbef4274af (diff) | |
| download | pubnub-python-10330cfdaefcd508311965c1ec8ff4a2f856229f.tar.bz2 | |
Ok with timetoken being same for different channels
| -rw-r--r-- | Pubnub.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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': |
