From 41efef750fb56688264c52ef8985228ed5caccc3 Mon Sep 17 00:00:00 2001 From: Amish Shah Date: Sun, 6 Dec 2015 19:11:59 +0000 Subject: [PATCH] Clarified options and added autoRevive option Useful when investigating potential option parameters --- src/Client/Client.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Client/Client.js b/src/Client/Client.js index 5b488e42e..dfd8812ef 100644 --- a/src/Client/Client.js +++ b/src/Client/Client.js @@ -18,6 +18,8 @@ export default class Client extends EventEmitter { constructor(options) { super(); this.options = options || {}; + this.options.compress = options.compress || true; + this.options.autoRevive = options.autoRevive || false; this.internal = new InternalClient(this); }