From e64368b2130c46e876806fb1e4186a286aa53d9f Mon Sep 17 00:00:00 2001 From: Ahmed Zamil Date: Wed, 11 Jan 2023 17:06:03 +0300 Subject: [PATCH] query error --- src/Net/IIP/DistributedConnection.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Net/IIP/DistributedConnection.js b/src/Net/IIP/DistributedConnection.js index 348766b..f092c78 100644 --- a/src/Net/IIP/DistributedConnection.js +++ b/src/Net/IIP/DistributedConnection.js @@ -2374,10 +2374,10 @@ export default class DistributedConnection extends IStore { let dataType = ar[0]; let data = ar[1]; - Codec.parse(data, 0, self, null, dataType).reply.then((resources) => { + Codec.parse(data, 0, self, null, dataType) + .reply.then((resources) => { reply.trigger((resources)) - } - ).error((ex) => reply.triggerError(ex)); + }).error((ex) => reply.triggerError(ex)); }).error(function (ex) { reply.triggerError(ex);