diff --git a/ts/smartbucket.classes.directory.ts b/ts/smartbucket.classes.directory.ts index 65e6bd7..4cb87f3 100644 --- a/ts/smartbucket.classes.directory.ts +++ b/ts/smartbucket.classes.directory.ts @@ -154,7 +154,8 @@ export class Directory { public async fastGet(pathArg: string) { 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) {