Skip to content

Commit

Permalink
closes #4574
Browse files Browse the repository at this point in the history
  • Loading branch information
psychobunny committed Apr 27, 2016
1 parent aac72a0 commit 1d607cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rewards/index.js
Expand Up @@ -90,7 +90,7 @@ function filterCompletedRewards(uid, rewards, callback) {
return true;
}

return (userRewards[reward.id] > reward.claimable) ? false : true;
return (userRewards[reward.id] >= reward.claimable) ? false : true;
});

callback(false, rewards);
Expand Down

0 comments on commit 1d607cb

Please sign in to comment.