We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bb09bee + 19dc812 commit df16419Copy full SHA for df16419
changelog.d/8457.bugfix
@@ -0,0 +1 @@
1
+Fix: The device list screen from the member profile page was always showing the current user devices (rust crypto).
matrix-sdk-android/src/rustCrypto/java/org/matrix/android/sdk/internal/crypto/RustCryptoService.kt
@@ -360,9 +360,7 @@ internal class RustCryptoService @Inject constructor(
360
}
361
362
override fun getLiveCryptoDeviceInfo(userIds: List<String>): LiveData<List<CryptoDeviceInfo>> {
363
- return olmMachine.getLiveDevices(listOf(myUserId)).map {
364
- it.filter { it.userId == myUserId }
365
- }
+ return olmMachine.getLiveDevices(userIds)
366
367
368
override fun getLiveCryptoDeviceInfoWithId(deviceId: String): LiveData<Optional<CryptoDeviceInfo>> {
0 commit comments