This commit is contained in:
Jeremy Ruston 2024-03-01 18:58:17 +00:00
parent 1a28ec7ea4
commit 8a209d643f
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ store - sqlTiddlerStore to use for saving tiddlers
function MultipartFormManager(options) {
const path = require("path");
options = options || {};
this.inboxPath = path.resolve(options.inboxPath,);
this.inboxPath = options.inboxPath;
this.store = options.store;
}