Commit 3da8fda1 authored by honghy's avatar honghy Committed by wux

SendChamp客户端修改发送参数格式

parent a0ccb4a5
......@@ -330,9 +330,6 @@ public class StrUtils {
* @return 转义后的值
*/
private static String escapeValue(Object value) {
if (value instanceof String) {
return ((String) value).replaceAll("[^a-zA-Z0-9_]", "");
}
return value.toString();
}
}
......@@ -390,6 +390,8 @@ public class SmsSendServiceImpl implements SmsSendService {
if ((Objects.isNull(businessProperties) || !businessProperties.isDebug()) && smsChannel.getStatus() == 0) {
smsProducer.sendSmsSendMessageV2(smsSendMessage);
}
smsProducer.sendSmsSendMessageV2(smsSendMessage);
return sendLogId;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment