aboutsummaryrefslogtreecommitdiffstats
path: root/httprpc.js
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-29 21:45:39 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-29 21:45:39 +0800
commit31c6159019d330d27c086343257902c97de3a8ae (patch)
tree6cb6319b651c551216ba7b2803e22a223243862b /httprpc.js
parent9adb62584678d0c1decbad447e4543637bcf574b (diff)
downloaddexon-31c6159019d330d27c086343257902c97de3a8ae.tar
dexon-31c6159019d330d27c086343257902c97de3a8ae.tar.gz
dexon-31c6159019d330d27c086343257902c97de3a8ae.tar.bz2
dexon-31c6159019d330d27c086343257902c97de3a8ae.tar.lz
dexon-31c6159019d330d27c086343257902c97de3a8ae.tar.xz
dexon-31c6159019d330d27c086343257902c97de3a8ae.tar.zst
dexon-31c6159019d330d27c086343257902c97de3a8ae.zip
filters refactored
Diffstat (limited to 'httprpc.js')
-rw-r--r--httprpc.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/httprpc.js b/httprpc.js
index 50674ec94..8e3c74b8b 100644
--- a/httprpc.js
+++ b/httprpc.js
@@ -52,7 +52,7 @@
return;
}
self.handlers.forEach(function (handler) {
- handler.call(self, {_event: "messages", data: id});
+ handler.call(self, {_event: payload.call, _id: id, data: parsed.result});
});
});
};