From 1c67df8b22a117d29b68314227bd816414fcfafe Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Mon, 24 Jan 2022 12:38:16 -0800 Subject: [PATCH] Fix incorrect translation key: unknownUser -> unnkownContact --- ts/models/messages.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/models/messages.ts b/ts/models/messages.ts index a3a54ef59..4ef88e568 100644 --- a/ts/models/messages.ts +++ b/ts/models/messages.ts @@ -461,7 +461,7 @@ export class MessageModel extends window.Backbone.Model { window.ConversationController.get(conversationId); return conversation ? conversation.getTitle() - : window.i18n('unknownUser'); + : window.i18n('unnkownContact'); }, renderString: ( key: string,