Remove debug throws

This commit is contained in:
Misode
2022-03-11 02:03:29 +01:00
parent 7ab0ec2e7e
commit e91798ff26
2 changed files with 0 additions and 2 deletions

View File

@@ -20,7 +20,6 @@ let Changelogs: Change[] | Promise<Change[]> | null = null
export async function getChangelogs() {
if (!Changelogs) {
const index = await (await fetch(`${repo}/index.json`)).json() as string[]
throw new Error('Test')
Changelogs = (await Promise.all(
index.map((group, i) => fetchGroup(parseVersion(group), i))
)).flat().map<Change>(change => ({