-
-
Notifications
You must be signed in to change notification settings - Fork 239
Closed
Labels
Description
Something weird about the Bungie.net API causes the dereference()
method to spin forever in an endless loop. I haven't had time to fully investigate why yet.
Code to reproduce the bug:
jsonSchemaRefParser.dereference('https://api.apis.guru/v2/specs/bungie.net/2.0.0/swagger.yaml')
.then(() => {
console.log('this line will never execute');
})
.catch(() => {
console.log('neither will this line');
});