mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-17 11:48:51 +03:00
Fix / string bad argument number - lint
This commit is contained in:
parent
fccfd00949
commit
943ba3bebd
1 changed files with 3 additions and 3 deletions
|
@ -48,10 +48,10 @@ class VerificationQrScannedByOtherController @Inject constructor(
|
|||
id("notice")
|
||||
apply {
|
||||
if (state.isMe) {
|
||||
val name = state.otherUserMxItem?.getBestName() ?: ""
|
||||
notice(stringProvider.getString(R.string.qr_code_scanned_self_verif_notice, name))
|
||||
notice(stringProvider.getString(R.string.qr_code_scanned_self_verif_notice))
|
||||
} else {
|
||||
notice(stringProvider.getString(R.string.qr_code_scanned_by_other_notice))
|
||||
val name = state.otherUserMxItem?.getBestName() ?: ""
|
||||
notice(stringProvider.getString(R.string.qr_code_scanned_by_other_notice, name))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue