change(member list): use only local user identity

This commit is contained in:
ganfra
2025-11-24 20:23:46 +01:00
parent 8a599a1e51
commit 9b0b1fa112

View File

@@ -179,7 +179,7 @@ class RoomMemberListPresenter(
return if (room.info().isEncrypted != true) {
RoomMemberWithIdentityState(this, null)
} else {
val identityState = identityStates[userId] ?: encryptionService.getUserIdentity(userId).getOrNull()
val identityState = identityStates[userId] ?: encryptionService.getUserIdentity(userId, fallbackToServer = false).getOrNull()
RoomMemberWithIdentityState(this, identityState)
}
}