Browse Source

Merge branch 'soon' into staging

master
ansuz 9 months ago
parent
commit
dc0460780f
1 changed files with 1 additions and 1 deletions
  1. 2
      lib/historyKeeper.js

2
lib/historyKeeper.js

@ -99,7 +99,7 @@ module.exports.create = function (config, cb) {
paths.staging = keyOrDefaultString('blobStagingPath', './blobstage');
paths.blob = keyOrDefaultString('blobPath', './blob');
Env.defaultStorageLimit = typeof(config.defaultStorageLimit) === 'number' && config.defaultStorageLimit > 0?
Env.defaultStorageLimit = typeof(config.defaultStorageLimit) === 'number' && config.defaultStorageLimit >= 0?
config.defaultStorageLimit:
Core.DEFAULT_LIMIT;

Loading…
Cancel
Save