diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/BadgeOperateListener.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/BadgeOperateListener.java index ff754195..77020b31 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/BadgeOperateListener.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/BadgeOperateListener.java @@ -122,6 +122,8 @@ public class BadgeOperateListener implements MessageListener { return; } List wearBadge = userProfile.getWearBadge(); + List honorBadge = userProfile.getWearHonor(); + wearBadge.addAll(honorBadge); if (CollectionUtils.isEmpty(wearBadge)) { return; } diff --git a/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/material/props/impl/BadgeBackpackClientServiceImpl.java b/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/material/props/impl/BadgeBackpackClientServiceImpl.java index e1254eb2..b8bcc632 100644 --- a/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/material/props/impl/BadgeBackpackClientServiceImpl.java +++ b/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/material/props/impl/BadgeBackpackClientServiceImpl.java @@ -152,6 +152,8 @@ public class BadgeBackpackClientServiceImpl implements BadgeBackpackClientServic return; } List wearBadge = userProfile.getWearBadge(); + List honorBadge = userProfile.getWearHonor(); + wearBadge.addAll(honorBadge); if (CollectionUtils.isEmpty(wearBadge)) { return; }