Skip to content

Commit b9fdf85

Browse files
committed
dont throw on 404s when fetching templates from iana
1 parent 49f8df0 commit b9fdf85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/fetch-iana.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ async function addTemplateData (data, options) {
9494
return
9595
}
9696

97-
let res = await got('https://www.iana.org/assignments/media-types/' + data.template)
97+
let res = await got(`https://www.iana.org/assignments/media-types/${data.template}`, { throwHttpErrors: false })
9898
var ref = data.type + '/' + data.name
9999
var rfc = getRfcReferences(data.reference)[0]
100100

0 commit comments

Comments
 (0)