diff options
Diffstat (limited to 'Pubnub.py')
| -rw-r--r-- | Pubnub.py | 6 | 
1 files changed, 4 insertions, 2 deletions
@@ -873,13 +873,15 @@ class PubnubCoreAsync(PubnubBase):                              if ch[1] in self.subscriptions:                                  chobj = self.subscriptions[ch[1]]                                  _invoke(chobj['callback'], -                                        self.decrypt(response_list[ch[0]]), chobj['name']) +                                        self.decrypt(response_list[ch[0]]), +                                        chobj['name'])                      else:                          response_list = response[0]                          chobj = _get_channel()                          for r in response_list:                              if chobj: -                                _invoke(chobj['callback'], self.decrypt(r), chobj['name']) +                                _invoke(chobj['callback'], self.decrypt(r), +                                        chobj['name'])                      _connect()  | 
