From d3e45779437964bd0d2d5c03b41196f058100ebb Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sun, 9 Apr 2023 14:59:14 -0400 Subject: [PATCH] *Missing args to api call in stat method --- dist/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/index.js b/dist/index.js index 6ad3ddb..991359c 100644 --- a/dist/index.js +++ b/dist/index.js @@ -5,7 +5,7 @@ export class IPFSClient extends Client { return this.callModuleReturn("ready"); } async stat(cid, options) { - return this.callModuleReturn("stat", { options }); + return this.callModuleReturn("stat", { cid, options }); } ls(cid, options) { return this.connectModuleGenerator("ls", { cid, options });