config: fix mb param.

This commit is contained in:
Christopher Jeffrey 2017-03-30 02:44:01 -07:00
parent 6fde0fd7d8
commit a630d23a97
No known key found for this signature in database
GPG Key ID: 8962AB9DE6666BBD

View File

@ -489,7 +489,7 @@ Config.prototype.mb = function mb(key, fallback) {
if (value === null)
return fallback;
return value * 1024;
return value * 1024 * 1024;
};
/**