fix: need to use length, not size
This commit is contained in:
parent
97df324828
commit
5db121774e
|
@ -7,7 +7,7 @@ const NO_PORTALS_ERROR = [null, "no active portals"] as ErrTuple;
|
||||||
export async function downloadObject(cid: string): Promise<ErrTuple> {
|
export async function downloadObject(cid: string): Promise<ErrTuple> {
|
||||||
const activePortals = getActivePortals();
|
const activePortals = getActivePortals();
|
||||||
|
|
||||||
if (!activePortals.size) {
|
if (!activePortals.length) {
|
||||||
return NO_PORTALS_ERROR;
|
return NO_PORTALS_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue