Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wecloud_im_server
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hewei
wecloud_im_server
Commits
c1d495a9
Commit
c1d495a9
authored
May 24, 2022
by
罗长华
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/xiaohudou_20220427' into xiaohudou_20220427
parents
85e8755f
c83e46f7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
core/src/main/java/com/wecloud/im/service/impl/ImRtcRecordServiceImpl.java
+3
-1
No files found.
core/src/main/java/com/wecloud/im/service/impl/ImRtcRecordServiceImpl.java
View file @
c1d495a9
...
...
@@ -2,6 +2,7 @@ package com.wecloud.im.service.impl;
import
com.alibaba.fastjson.JSON
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.wecloud.im.entity.ImClient
;
import
com.wecloud.im.entity.ImRtcRecord
;
...
...
@@ -61,7 +62,8 @@ public class ImRtcRecordServiceImpl extends BaseServiceImpl<ImRtcRecordMapper, I
@Override
public
void
updateRtcRecord
(
Long
channelId
,
Integer
type
)
{
try
{
ImRtcRecord
rtcRecord
=
this
.
getById
(
channelId
);
ImRtcRecord
rtcRecord
=
this
.
getOne
(
new
QueryWrapper
<
ImRtcRecord
>().
lambda
()
.
eq
(
ImRtcRecord:
:
getChannelId
,
channelId
));
if
(
rtcRecord
==
null
)
{
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment