Show contact name on 'send anyway' dialog instead of $name$

Partial fix for #1914
pull/272/head
Scott Nonnenberg 6 years ago
parent 2c99cc8ff5
commit 0eb4760349

@ -1133,7 +1133,10 @@
forceSend({ contact, message }) {
const dialog = new Whisper.ConfirmationDialogView({
message: i18n('identityKeyErrorOnSend'),
message: i18n('identityKeyErrorOnSend', [
contact.getTitle(),
contact.getTitle(),
]),
okText: i18n('sendAnyway'),
resolve: async () => {
await contact.updateVerified();

Loading…
Cancel
Save