restore paths to blob and blobstage for admin disk usage report

This commit is contained in:
ansuz 2019-09-23 16:13:24 +02:00
parent b1dab8e75a
commit cfc90a56b6

2
rpc.js
View file

@ -1382,6 +1382,8 @@ RPC.create = function (
var pinPath = paths.pin = keyOrDefaultString('pinPath', './pins');
paths.block = keyOrDefaultString('blockPath', './block');
paths.data = keyOrDefaultString('filePath', './datastore');
paths.staging = keyOrDefaultString('blobStagingPath', './blobstage');
paths.blob = keyOrDefaultString('blobPath', './blob');
var isUnauthenticateMessage = function (msg) {
return msg && msg.length === 2 && isUnauthenticatedCall(msg[0]);