Skip to content

Commit

Permalink
Don't die on too many request ids (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
nichtich committed Oct 2, 2019
1 parent 2fafc63 commit b465f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/queries/get-mappings-from.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function getMappingsFrom (args, schemes) {
const url = getEntities(qids, languages, props)

return httpRequest(url)
.then(res => res.entities)
.then(res => res.entities || [])
.then(res => {
var mappings = []

Expand Down

0 comments on commit b465f57

Please sign in to comment.