@@ -98,7 +98,7 @@ public class ReceivePonitsService { | |||
points = Integer.parseInt(dictData.getValue()); | |||
} | |||
if ((points + totalPointsByToDay) >= dailyLimitWestreamSubmit) { | |||
if ((points + totalPointsByToDay) > dailyLimitWestreamSubmit) { | |||
log.info("此次领取积分,加上今天已领积分,已超过每日积分上限,points:{},totalPointsByToDay:{}, dailyLimitWestreamSubmit:{}", points, totalPointsByToDay, dailyLimitWestreamSubmit); | |||
return JsonResult.error("此次领取积分,加上今天已领积分,已超过每日积分上限"); | |||
} |