Commit 5addf42f by 万齐军

bugfix

parent 726181ac
...@@ -14,7 +14,7 @@ buildscript { ...@@ -14,7 +14,7 @@ buildscript {
ydlrouter_version = '1.2.3' ydlrouter_version = '1.2.3'
constrait_support_version = '1.0.2' constrait_support_version = '1.0.2'
componentVersion = "0.3.0.42" componentVersion = "0.3.0.47.5-SNAPSHOT"
} }
repositories { repositories {
mavenCentral() mavenCentral()
......
...@@ -19,6 +19,7 @@ import com.ydl.ydl_av.voice.manager.YDLVoiceManager ...@@ -19,6 +19,7 @@ import com.ydl.ydl_av.voice.manager.YDLVoiceManager
import com.ydl.ydlcommon.modular.findRouteService import com.ydl.ydlcommon.modular.findRouteService
import com.ydl.ydlcommon.utils.log.XLog import com.ydl.ydlcommon.utils.log.XLog
import com.yidianling.im.api.service.IImService import com.yidianling.im.api.service.IImService
import io.reactivex.schedulers.Schedulers
/** /**
* Created by Ykai on 2022/7/26. * Created by Ykai on 2022/7/26.
...@@ -86,6 +87,8 @@ class AudioImServiceImp : IAudioImService { ...@@ -86,6 +87,8 @@ class AudioImServiceImp : IAudioImService {
val toJson = Gson().toJson(resp) val toJson = Gson().toJson(resp)
AudioApiRequestUtil.callEventSave(YDLVoiceManager.currentChannel, "7", "20", toJson, eventType = type) AudioApiRequestUtil.callEventSave(YDLVoiceManager.currentChannel, "7", "20", toJson, eventType = type)
.subscribeOn(Schedulers.io())
.subscribe()
} }
override fun callCheck(context: Context, calleeUid: String?, delay: Long) { override fun callCheck(context: Context, calleeUid: String?, delay: Long) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment