File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
matrix-sdk-android/src/rustCrypto/java/org/matrix/android/sdk/internal/crypto Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change
1
+ Fix: The device list screen from the member profile page was always showing the current user devices (rust crypto).
Original file line number Diff line number Diff line change @@ -360,9 +360,7 @@ internal class RustCryptoService @Inject constructor(
360
360
}
361
361
362
362
override fun getLiveCryptoDeviceInfo (userIds : List <String >): LiveData <List <CryptoDeviceInfo >> {
363
- return olmMachine.getLiveDevices(listOf (myUserId)).map {
364
- it.filter { it.userId == myUserId }
365
- }
363
+ return olmMachine.getLiveDevices(userIds)
366
364
}
367
365
368
366
override fun getLiveCryptoDeviceInfoWithId (deviceId : String ): LiveData <Optional <CryptoDeviceInfo >> {
You can’t perform that action at this time.
0 commit comments