*Missing args to api call in stat method
This commit is contained in:
parent
21a59cb49e
commit
d813e271f0
|
@ -13,7 +13,7 @@ export class IPFSClient extends Client {
|
||||||
}
|
}
|
||||||
|
|
||||||
public async stat(cid: string, options?: Partial<StatOptions>) {
|
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 {
|
public ls(cid: string, options?: Partial<LsOptions>): AbortableGenerator {
|
||||||
|
|
Loading…
Reference in New Issue