From 6f637b6b4792d23e8754cebeab7fa5e7dd7a1ee5 Mon Sep 17 00:00:00 2001 From: Emily Stark Date: Mon, 16 Jun 2014 14:28:29 -0700 Subject: [PATCH] Fix service connection timeout error initialization --- tools/service-connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/service-connection.js b/tools/service-connection.js index 1979c2ac78..a16cc8c287 100644 --- a/tools/service-connection.js +++ b/tools/service-connection.js @@ -52,7 +52,7 @@ ServiceConnection.ConnectionTimeoutError = _.extend( // can't run this at the top-level since we're not in a fiber. see // comment before ServiceConnection.ConnectionTimeoutError. ensureConnectionTimeoutErrorDefined = function (Meteor) { - if (! ServiceConnection.ConnectionTimeoutError.uninitialized) { + if (ServiceConnection.ConnectionTimeoutError.uninitialized) { ServiceConnection.ConnectionTimeoutError = Meteor.makeErrorType( "ServiceConnection.ConnectionTimeoutError", /*name*/ function () {