Use systemNickname in conversation merger

This commit is contained in:
Fedor Indutny 2023-02-14 14:35:34 -08:00 committed by GitHub
parent 49d5e9beea
commit 23b04847e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 0 deletions

View file

@ -601,6 +601,7 @@ export class ConversationController {
'profileName', 'profileName',
'systemGivenName', 'systemGivenName',
'systemFamilyName', 'systemFamilyName',
'systemNickname',
'type', 'type',
'username', 'username',
]); ]);

2
ts/model-types.d.ts vendored
View file

@ -422,6 +422,8 @@ export type ConversationRenderInfoType = Pick<
| 'profileFamilyName' | 'profileFamilyName'
| 'profileName' | 'profileName'
| 'systemGivenName' | 'systemGivenName'
| 'systemFamilyName'
| 'systemNickname'
| 'type' | 'type'
| 'username' | 'username'
>; >;