Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a4ba79d

Browse files
committedNov 1, 2024
Fix crash from leftover linked device change.
1 parent 3909c4b commit a4ba79d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed
 

‎app/src/main/java/org/thoughtcrime/securesms/linkdevice/LinkDeviceViewModel.kt

-9
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ import kotlinx.coroutines.flow.asStateFlow
99
import kotlinx.coroutines.flow.update
1010
import kotlinx.coroutines.launch
1111
import org.signal.core.util.logging.Log
12-
import org.thoughtcrime.securesms.dependencies.AppDependencies
13-
import org.thoughtcrime.securesms.jobmanager.JobTracker
1412
import org.thoughtcrime.securesms.jobs.LinkedDeviceInactiveCheckJob
1513
import org.thoughtcrime.securesms.linkdevice.LinkDeviceRepository.LinkDeviceResult
1614
import org.thoughtcrime.securesms.linkdevice.LinkDeviceRepository.getPlaintextDeviceName
@@ -35,17 +33,10 @@ class LinkDeviceViewModel : ViewModel() {
3533
private val _state = MutableStateFlow(LinkDeviceSettingsState())
3634
val state = _state.asStateFlow()
3735

38-
private lateinit var listener: JobTracker.JobListener
39-
4036
fun initialize() {
4137
loadDevices()
4238
}
4339

44-
override fun onCleared() {
45-
super.onCleared()
46-
AppDependencies.jobManager.removeListener(listener)
47-
}
48-
4940
fun setDeviceToRemove(device: Device?) {
5041
_state.update { it.copy(deviceToRemove = device) }
5142
}

0 commit comments

Comments
 (0)
Please sign in to comment.