mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-02 08:23:00 +01:00
Fix backup validation error when a group member has a label emoji value without a label string.
This commit is contained in:
@@ -133,7 +133,7 @@ private fun DecryptedMember.toRemote(): Group.Member {
|
||||
userId = aciBytes,
|
||||
role = role.toRemote(),
|
||||
joinedAtVersion = joinedAtRevision,
|
||||
labelEmoji = labelEmoji,
|
||||
labelEmoji = if (labelString.isNotBlank()) labelEmoji else "",
|
||||
labelString = labelString
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user