diff --git a/server/boot/user.js b/server/boot/user.js index 2276e8f01c..4d7b44b013 100644 --- a/server/boot/user.js +++ b/server/boot/user.js @@ -224,7 +224,7 @@ module.exports = function(app) { ); const bonfires = profileUser.completedChallenges.filter(function(obj) { - return obj.challengeType === 5 && (obj.name || '').match(/Bonfire/g); + return (obj.name || '').match(/^Bonfire/g); }); const waypoints = profileUser.completedChallenges.filter(function(obj) {