watches are calling callback with a single result object, not a full jsonrpc response

This commit is contained in:
Marek Kotewicz
2015-01-26 16:22:40 +01:00
parent 81bbe8c93b
commit d0b6f3663b
5 changed files with 18 additions and 14 deletions

View File

@ -47,8 +47,10 @@ Filter.prototype.changed = function(callback) {
/// trigger calling new message from people
Filter.prototype.trigger = function(messages) {
for(var i = 0; i < this.callbacks.length; i++) {
this.callbacks[i].call(this, messages);
for (var i = 0; i < this.callbacks.length; i++) {
for (var j = 0; j < messages; j++) {
this.callbacks[i].call(this, messages[j]);
}
}
};