Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-im
提交
eea6f5d9
U
uni-im
项目概览
DCloud
/
uni-im
通知
3
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-im
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
eea6f5d9
编写于
11月 11, 2024
作者:
DCloud_JSON
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修复 用户自己给自己发消息,创建两条会话记录的问题
上级
7ae1ce1d
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
13 addition
and
14 deletion
+13
-14
uniCloud/cloudfunctions/uni-im-co/msg.js
uniCloud/cloudfunctions/uni-im-co/msg.js
+13
-14
未找到文件。
uniCloud/cloudfunctions/uni-im-co/msg.js
浏览文件 @
eea6f5d9
...
...
@@ -459,11 +459,6 @@ async function _createOrUpdateConversation(conversation_id, msgData, chat_source
}
const
clientInfo
=
this
.
getClientInfo
()
if
(
conversation_grade
===
300
&&
msgData
.
to_uid
&&
clientInfo
.
source
!=
'
function
'
&&
this
.
current_uid
!=
'
system
'
){
// console.error('createOrUpdateConversation conversation_grade 300~~~~~',clientInfo.appVersionCode);
// TODO:用于向下兼容
if
(
clientInfo
.
appVersionCode
<
24042501
)
{
throw
new
Error
(
'
你的客户端版本过旧,不能发起新会话。请刷新后重试
'
)
}
// 仅限:系统管理员参与的 或 群成员向群管理员 发起私聊
let
check
=
false
// 消息发送者是系统管理员
...
...
@@ -547,22 +542,26 @@ async function _createOrUpdateConversation(conversation_id, msgData, chat_source
let
{
data
:[
groupInfo
]}
=
await
db
.
collection
(
'
uni-im-group
'
)
.
doc
(
msgData
.
group_id
)
.
field
({
type
:
true
,
type
:
true
})
.
get
()
senderConversation
.
group_type
=
groupInfo
?.
type
// 群聊只为当前用户创建会话
await
dbUniImConversation
.
add
(
senderConversation
)
}
else
{
// 2.消息接收者 会话数据
receiverConversation
=
{
...
senderConversation
,
unread_count
:
1
,
user_id
:
msgData
.
to_uid
,
friend_uid
:
msgData
.
from_uid
const
newConversation
=
[
senderConversation
]
// 如果不是:用户自己给自己发消息
if
(
msgData
.
to_uid
!=
msgData
.
from_uid
)
{
// 2.消息接收者 会话数据
receiverConversation
=
{
...
senderConversation
,
unread_count
:
1
,
user_id
:
msgData
.
to_uid
,
friend_uid
:
msgData
.
from_uid
}
newConversation
.
push
(
receiverConversation
)
}
// 单聊,同时为收发双方创建此会话
await
dbUniImConversation
.
add
([
senderConversation
,
receiverConversation
])
await
dbUniImConversation
.
add
(
newConversation
)
}
}
else
{
// 会话已存在,更新相关内容
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录