From a630d23a97b68f189a85105856fedc4e9e515754 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Thu, 30 Mar 2017 02:44:01 -0700 Subject: [PATCH] config: fix mb param. --- lib/node/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node/config.js b/lib/node/config.js index 7744bbdb..68267b8d 100644 --- a/lib/node/config.js +++ b/lib/node/config.js @@ -489,7 +489,7 @@ Config.prototype.mb = function mb(key, fallback) { if (value === null) return fallback; - return value * 1024; + return value * 1024 * 1024; }; /**