280 【轻量级 PR】:短信接收报告回调处理小Bug

This commit is contained in:
YunaiV 2022-11-10 21:18:22 +08:00
parent 26dee4026b
commit 46d16c45e6

View File

@ -180,7 +180,7 @@ public class SmsSendServiceImpl implements SmsSendService {
}
// 更新短信日志的接收结果. 因为量一般不大所以先使用 for 循环更新
receiveResults.forEach(result -> smsLogService.updateSmsReceiveResult(result.getLogId(),
result.getSuccess(), result.getReceiveTime(), result.getErrorCode(), result.getErrorCode()));
result.getSuccess(), result.getReceiveTime(), result.getErrorCode(), result.getErrorMsg()));
}
}