Fix check for _id as well as id during certification

pull/3646/head
Berkeley Martinez 2015-10-07 16:30:51 -07:00
parent 326a7d0f2b
commit 1695a760ef
1 changed files with 5 additions and 1 deletions

View File

@ -31,7 +31,11 @@ function isCertified(frontEndIds, { completedChallenges, isFrontEndCert }) {
if (isFrontEndCert) {
return true;
}
return _.every(frontEndIds, ({ id }) => _.some(completedChallenges, { id }));
return _.every(frontEndIds, ({ id }) => {
return _.some(completedChallenges, (challenge) => {
return challenge.id === id || challenge._id === id;
});
});
}
export default function certificate(app) {