mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-28 04:13:18 +01:00
Fix system name processing in storage service
This commit is contained in:
@@ -15,5 +15,5 @@ export const isInSystemContacts = ({
|
||||
// `direct` for redux, `private` for models and the database
|
||||
(type === 'direct' || type === 'private') &&
|
||||
(typeof name === 'string' ||
|
||||
typeof systemGivenName === 'string' ||
|
||||
typeof systemFamilyName === 'string');
|
||||
(typeof systemGivenName === 'string' && systemGivenName.length > 0) ||
|
||||
(typeof systemFamilyName === 'string' && systemFamilyName.length > 0));
|
||||
|
||||
Reference in New Issue
Block a user