diff --git a/pom.xml b/pom.xml index 0d1c061..9709049 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ cn.wildfirechat app - 0.63 + 0.64 jar app diff --git a/release_note.md b/release_note.md index a438bed..50b416f 100644 --- a/release_note.md +++ b/release_note.md @@ -1,11 +1,7 @@ # 当前版本更新记录 -0.62 Release note: -1. 删掉部分无用依赖减少程序大小 -2. 会议支持设置焦点用户功能 -3. 添加nginx示例配置 -4. 升级IM SDK -5. 定期清理无效的pcsession - +0.64 Release note: +1. 当用户名登录时,当用户不存在时也返回密码错误。 +2. 会议设置最大参与人数参数 # 升级注意事项 1. 如果从0.40以前版本升级上来,需要注意升级兼容有问题 请参考Readme中的兼容问题说明 @@ -23,6 +19,14 @@ 7. 从0.54版本开始,替换了腾讯云SDK,使用腾讯云短信的客户需要注意修改配置文件调试短信功能 # 历史更新记录 +------------- +0.63 Release note: +1. 删掉部分无用依赖减少程序大小 +2. 会议支持设置焦点用户功能 +3. 添加nginx示例配置 +4. 升级IM SDK +5. 定期清理无效的pcsession + ------------- 0.62 Release note: 1. 回归用户自动关注官方频道 diff --git a/src/main/java/cn/wildfirechat/app/conference/ConferenceServiceImpl.java b/src/main/java/cn/wildfirechat/app/conference/ConferenceServiceImpl.java index 0ee8f4f..0bd15c7 100644 --- a/src/main/java/cn/wildfirechat/app/conference/ConferenceServiceImpl.java +++ b/src/main/java/cn/wildfirechat/app/conference/ConferenceServiceImpl.java @@ -144,7 +144,7 @@ public RestResult createConference(ConferenceInfo info) { } try { - IMResult result = ConferenceAdmin.createRoom(info.conferenceId, info.conferenceTitle, info.pin, 9, info.advance, 0, info.recording, false); + IMResult result = ConferenceAdmin.createRoom(info.conferenceId, info.conferenceTitle, info.pin, info.maxParticipants, info.advance, 0, info.recording, false); if(result != null && result.getErrorCode() == ErrorCode.ERROR_CODE_SUCCESS) { conferenceEntityRepository.save(convertConference(info)); favConference(info.conferenceId);