1
0
mirror of https://github.com/vector-im/element-android.git synced 2025-07-29 19:41:14 +03:00

Small renamings/reorganization in CryptoService

This commit is contained in:
Maxime NATUREL
2022-08-30 16:09:03 +02:00
parent 3eb29b4661
commit 2a599d9760
8 changed files with 31 additions and 31 deletions

View File

@ -72,7 +72,7 @@ class FlowSession(private val session: Session) {
}
fun liveMyDevicesInfo(): Flow<List<DeviceInfo>> {
return session.cryptoService().getLiveMyDevicesInfo().asFlow()
return session.cryptoService().getMyDevicesInfoLive().asFlow()
.startWith(session.coroutineDispatchers.io) {
session.cryptoService().getMyDevicesInfo()
}