|
@@ -594,8 +594,8 @@ public class CoreServiceImpl implements CoreService {
|
|
|
planAccountService.updateRetry(planAccount);
|
|
|
if (Objects.equals(planAccount.getPushType(), PublishGzhPushTypeEnum.auto_group_publish.getVal())) {
|
|
|
if (StringUtils.isNotEmpty(pushStatusVO.getErrorMsg())) {
|
|
|
- //群发配额用完 不再重试
|
|
|
- if (pushStatusVO.getErrorMsg().contains("45028")) {
|
|
|
+ //45028群发配额用完不再重试 48004封号账号也不再重试
|
|
|
+ if (pushStatusVO.getErrorMsg().contains("45028") || pushStatusVO.getErrorMsg().contains("48004")) {
|
|
|
planAccountService.updateStatus(3, planAccountId);
|
|
|
}
|
|
|
}
|