*Missing args to api call in stat method

This commit is contained in:
Derrick Hammer 2023-04-09 14:58:46 -04:00
parent 21a59cb49e
commit d813e271f0
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ export class IPFSClient extends Client {
}
public async stat(cid: string, options?: Partial<StatOptions>) {
return this.callModuleReturn("stat", { options });
return this.callModuleReturn("stat", { cid, options });
}
public ls(cid: string, options?: Partial<LsOptions>): AbortableGenerator {