Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
xuning
/
livekitAndroidXuningTest
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
David Liu
2021-04-02 14:06:36 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5cefc485bf2aad8ec6397d75c067235c05499e65
5cefc485
1 parent
29fcaf6d
Fix participant list not updating tracks
隐藏空白字符变更
内嵌
并排对比
正在显示
4 个修改的文件
包含
5 行增加
和
10 行删除
.gitignore
.idea/misc.xml
livekit-android-sdk/src/main/java/io/livekit/android/room/RTCClient.kt
livekit-android-sdk/src/main/java/io/livekit/android/room/Room.kt
.gitignore
查看文件 @
5cefc48
...
...
@@ -7,6 +7,8 @@
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
/.idea/deploymentTargetDropDown.xml
/.idea/misc.xml
.DS_Store
/build
/captures
...
...
.idea/misc.xml
已删除
100644 → 0
查看文件 @
29fcaf6
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_8"
default=
"true"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/build/classes"
/>
</component>
<component
name=
"ProjectType"
>
<option
name=
"id"
value=
"Android"
/>
</component>
</project>
\ No newline at end of file
livekit-android-sdk/src/main/java/io/livekit/android/room/RTCClient.kt
查看文件 @
5cefc48
...
...
@@ -237,6 +237,8 @@ constructor(
}
return
}
Timber.v { "response: $response" }
when (response.messageCase) {
LivekitRtc.SignalResponse.MessageCase.ANSWER -> {
val sd = fromProtoSessionDescription(response.answer)
...
...
livekit-android-sdk/src/main/java/io/livekit/android/room/Room.kt
查看文件 @
5cefc48
...
...
@@ -212,7 +212,7 @@ constructor(
continue
}
val isNewParticipant = remoteParticipants.contains(participantSid)
val isNewParticipant =
!
remoteParticipants.contains(participantSid)
val participant = getOrCreateRemoteParticipant(participantSid, info)
if (info.state == LivekitModels.ParticipantInfo.State.DISCONNECTED) {
...
...
请
注册
或
登录
后发表评论