diff options
| author | Devendra | 2013-12-14 03:09:03 +0530 |
|---|---|---|
| committer | Devendra | 2013-12-14 03:09:03 +0530 |
| commit | 1d601e3411af27c1b39e697849a538b692a535e7 (patch) | |
| tree | 44e494f838da6fe2369718ef3c580c887bf018ae /common/PubnubCore.py | |
| parent | 56a6a2cf5e798f412621a2ed4a6d2cb5356ee156 (diff) | |
| download | pubnub-python-1d601e3411af27c1b39e697849a538b692a535e7.tar.bz2 | |
fixing encryption to be compatible with JS and javastaging-3.3.5
Diffstat (limited to 'common/PubnubCore.py')
| -rw-r--r-- | common/PubnubCore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/PubnubCore.py b/common/PubnubCore.py index 9a4fcae..dcfd319 100644 --- a/common/PubnubCore.py +++ b/common/PubnubCore.py @@ -106,7 +106,7 @@ class PubnubCore(PubnubBase): ## Run user Callback and Reconnect if user permits. for message in messages : - if not callback(message) : + if not callback(self.decrypt(message)) : return except Exception: |
