Skip to content

Commit e7acdcd

Browse files
committed
Update getVersionBuilds error message
1 parent d3524ca commit e7acdcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/fill.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export async function getVersionBuilds(project: string, version: string, channel
2727
}
2828
const res = await edgeFetch(url, 300);
2929
if (!res.ok) {
30-
throw new Error(`getVersionBuilds(${project}, ${version}) failed: ${res.status}`);
30+
throw new Error(`getVersionBuilds(${project}, ${version}, ${channel}) failed: ${res.status}`);
3131
}
3232
return res.json() as Promise<Build[]>;
3333
}

0 commit comments

Comments
 (0)