fix(core): update

This commit is contained in:
Philipp Kunz 2019-10-19 22:57:36 +02:00
parent 547692ac62
commit cede6c7539

View File

@ -154,7 +154,8 @@ export class Directory {
public async fastGet(pathArg: string) { public async fastGet(pathArg: string) {
const path = plugins.path.join(this.getBasePath(), pathArg); const path = plugins.path.join(this.getBasePath(), pathArg);
await this.bucketRef.fastGet(path); const result = await this.bucketRef.fastGet(path);
return result;
} }
public async fastRemove(pathArg: string) { public async fastRemove(pathArg: string) {