We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31b2306 commit 3ee4c6fCopy full SHA for 3ee4c6f
app/src/main/java/io/agora/flat/PostLoginInitializers.kt
@@ -12,13 +12,9 @@ class PostLoginInitializers @Inject constructor(
12
@ApplicationContext val context: Context,
13
private val initializers: Set<@JvmSuppressWildcards PostLoginInitializer>,
14
) {
15
- private var inited = false
16
-
17
fun init() {
18
- if (inited) return
19
initializers.forEach {
20
it.init(context)
21
}
22
- inited = true
23
24
app/src/main/java/io/agora/flat/common/rtm/AgoraRtm.kt
@@ -53,6 +53,7 @@ class AgoraRtm @Inject constructor(
53
private var rtmListeners = mutableListOf<RtmListener>()
54
55
override fun init(context: Context) {
56
+ RtmClient.release()
57
try {
58
val config = RtmConfig.Builder(appEnv.agoraAppId, appKVCenter.getUserInfo()?.uuid)
59
.eventListener(this)
0 commit comments