@rongcloud/imlib-next 5.18.0 → 5.20.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -59,9 +59,9 @@ RongIMLib.addEventListener(Events.MESSAGES, (evt) => {
59
59
  // 测试链接 Your-Token 可以通过开发者后台获取临时 Token
60
60
  RongIMLib.connect('<Your-Token>').then(res => {
61
61
  if (res.code === RongIMLib.ErrorCode.SUCCESS) {
62
- console.log('链接成功, 链接用户 id 为: ', res.data.userId);
62
+ console.log('链接成功,链接用户 id 为:', res.data.userId);
63
63
  } else {
64
- console.warn('链接失败, code:', res.code)
64
+ console.warn('链接失败,code:', res.code)
65
65
  }
66
66
  })
67
67
  ```