修复开放平台编辑参数不一致bug

This commit is contained in:
TinyAnts 2023-01-09 18:15:12 +08:00
parent f48116e8d1
commit 570198d9bc
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class ChannelOpServiceImpl implements IChannelOpService {
@Override
public void save(ChannelOpValidate opValidate) {
ConfigUtils.set("op_channel", "appId", opValidate.getAppId());
ConfigUtils.set("op_channel", "appSecret", opValidate.getAppId());
ConfigUtils.set("op_channel", "appSecret", opValidate.getAppSecret());
}
}