Add missing bind in messageReceiver
// FREEBIE
This commit is contained in:
parent
7dcad67410
commit
cee2b3163a
2 changed files with 2 additions and 2 deletions
|
@ -37119,7 +37119,7 @@ MessageReceiver.prototype.extend({
|
|||
|
||||
return p.then(function() {
|
||||
return this.processDecrypted(finalMessage);
|
||||
});
|
||||
}.bind(this);
|
||||
}.bind(this));
|
||||
},
|
||||
handleEndSession: function(number) {
|
||||
|
|
|
@ -299,7 +299,7 @@ MessageReceiver.prototype.extend({
|
|||
|
||||
return p.then(function() {
|
||||
return this.processDecrypted(finalMessage);
|
||||
});
|
||||
}.bind(this);
|
||||
}.bind(this));
|
||||
},
|
||||
handleEndSession: function(number) {
|
||||
|
|
Loading…
Reference in a new issue