diff --git a/ts/ConversationController.ts b/ts/ConversationController.ts index 71c08364d7..860d10e1ae 100644 --- a/ts/ConversationController.ts +++ b/ts/ConversationController.ts @@ -601,6 +601,7 @@ export class ConversationController { 'profileName', 'systemGivenName', 'systemFamilyName', + 'systemNickname', 'type', 'username', ]); diff --git a/ts/model-types.d.ts b/ts/model-types.d.ts index 2cdc63e23e..9473713d6a 100644 --- a/ts/model-types.d.ts +++ b/ts/model-types.d.ts @@ -422,6 +422,8 @@ export type ConversationRenderInfoType = Pick< | 'profileFamilyName' | 'profileName' | 'systemGivenName' + | 'systemFamilyName' + | 'systemNickname' | 'type' | 'username' >;