mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2024-12-17 17:20:21 +01:00
hard replace for the forward slash since I don't want to modify anything related to localization
This commit is contained in:
+2
-2
@@ -492,9 +492,9 @@ private fun updateMemberRoleDialog(
|
||||
AlertManager.shared.showAlertDialog(
|
||||
title = generalGetString(MR.strings.change_member_role_question),
|
||||
text = if (member.memberCurrent)
|
||||
String.format(generalGetString(MR.strings.member_role_will_be_changed_with_notification), newRole.text)
|
||||
String.format(generalGetString(MR.strings.member_role_will_be_changed_with_notification).replace("\\", ""), newRole.text)
|
||||
else
|
||||
String.format(generalGetString(MR.strings.member_role_will_be_changed_with_invitation), newRole.text),
|
||||
String.format(generalGetString(MR.strings.member_role_will_be_changed_with_invitation).replace("\\", ""), newRole.text),
|
||||
confirmText = generalGetString(MR.strings.change_verb),
|
||||
onDismiss = onDismiss,
|
||||
onConfirm = onConfirm,
|
||||
|
||||
Reference in New Issue
Block a user