From 625494fc473f465b6409c46b1f3822e035470ce5 Mon Sep 17 00:00:00 2001 From: mscdex Date: Sun, 30 Jun 2013 13:54:05 -0400 Subject: [PATCH] Connection: fix style --- lib/Connection.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Connection.js b/lib/Connection.js index 0e6f7f8..1cc5e38 100644 --- a/lib/Connection.js +++ b/lib/Connection.js @@ -55,12 +55,12 @@ function Connection(config) { autotls: config.autotls, user: config.user, password: config.password, + xoauth: config.xoauth, + xoauth2: config.xoauth2, connTimeout: config.connTimeout || 10000, keepalive: (typeof config.keepalive === 'boolean' ? config.keepalive - : true), - xoauth:config.xoauth, - xoauth2:config.xoauth2, + : true) }; this._sock = undefined; @@ -466,7 +466,7 @@ Connection.prototype._store = function(which, uids, flags, isAdding, cb) { flags = flags.join(' '); uids = uids.join(','); - + this._enqueue(which + 'STORE ' + uids + ' ' + (isAdding ? '+' : '-') + 'FLAGS.SILENT (' + flags + ')', cb);