Fix check for _id as well as id during certification

This commit is contained in:
Berkeley Martinez
2015-10-07 16:30:51 -07:00
parent 326a7d0f2b
commit 1695a760ef

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) {