summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2014-12-23 19:15:45 +0100
committerBenoit Foucher <benoit@zeroc.com>2014-12-23 19:15:45 +0100
commitbf57d0150b99066b191a43941644037bd260e6ff (patch)
tree3951a976db868233dd65f8b3b92381344be70b5c
parentFixed (ICE-6238) bin/HttpServer.js can't find IceJS installation on Ubuntu (diff)
downloadice-bf57d0150b99066b191a43941644037bd260e6ff.tar.bz2
ice-bf57d0150b99066b191a43941644037bd260e6ff.tar.xz
ice-bf57d0150b99066b191a43941644037bd260e6ff.zip
Minor JS fix
-rw-r--r--js/src/Ice/ConnectRequestHandler.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/Ice/ConnectRequestHandler.js b/js/src/Ice/ConnectRequestHandler.js
index ff6ecdd7c33..e32756e4331 100644
--- a/js/src/Ice/ConnectRequestHandler.js
+++ b/js/src/Ice/ConnectRequestHandler.js
@@ -355,7 +355,7 @@ var ConnectRequestHandler = Ice.Class({
Debug.assert(!this._initialized);
this._exception = exception;
- this._initialized = this._exception !== null;
+ this._initialized = this._exception === null;
try
{
//