Add missing bind in messageReceiver

// FREEBIE
This commit is contained in:
lilia 2016-02-08 15:48:29 -08:00
parent 7dcad67410
commit cee2b3163a
2 changed files with 2 additions and 2 deletions

View file

@ -37119,7 +37119,7 @@ MessageReceiver.prototype.extend({
return p.then(function() {
return this.processDecrypted(finalMessage);
});
}.bind(this);
}.bind(this));
},
handleEndSession: function(number) {

View file

@ -299,7 +299,7 @@ MessageReceiver.prototype.extend({
return p.then(function() {
return this.processDecrypted(finalMessage);
});
}.bind(this);
}.bind(this));
},
handleEndSession: function(number) {