From 032f7b44ed42730aca1f6ed9d426d4b97da8608d Mon Sep 17 00:00:00 2001 From: haad Date: Sun, 27 Dec 2015 18:24:10 +0200 Subject: [PATCH] Add network info to HashCacheClient --- HashCacheClient.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/HashCacheClient.js b/HashCacheClient.js index 7de41d7..d59d05c 100644 --- a/HashCacheClient.js +++ b/HashCacheClient.js @@ -3,9 +3,10 @@ var request = require('./BetterRequest'); class HashCacheClient { - constructor(host, credentials) { + constructor(host, credentials, info) { this.host = host this.credentials = credentials + this.info = info; this.linkedList = this.linkedList.bind(this) }