2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-07-01 08:53:12 +00:00

AsyncReply is Promise

This commit is contained in:
2019-07-21 05:26:43 +03:00
parent 3ac2eccf0f
commit 399a096c58
4 changed files with 30 additions and 42 deletions

View File

@ -201,8 +201,8 @@ export default class DistributedConnection extends IStore {
this.socket.onclose = function(event)
{
if (this.openReply)
this.openReply.triggerError();
if (this.connection.openReply)
this.connection.openReply.triggerError(0, 0, "Host not reachable");
self.close(event);
};