Merge pull request #1333 from Bilb/fix-avatar-path

fix custom avatar show on dialogs and list
pull/1338/head
Audric Ackermann 5 years ago committed by GitHub
commit b51eca61c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,6 +42,7 @@ export class InviteContactsDialog extends React.Component<Props, State> {
id: d.id,
authorPhoneNumber: d.id,
authorProfileName: name,
authorAvatarPath: d?.cachedProps?.avatarPath,
selected: false,
authorName: name,
authorColor: d.getColor(),

@ -49,6 +49,7 @@ export class UpdateGroupMembersDialog extends React.Component<Props, State> {
id: d.id,
authorPhoneNumber: d.id,
authorProfileName: name,
authorAvatarPath: d?.cachedProps?.avatarPath,
selected: false,
authorName: name, // different from ProfileName?
authorColor: d.getColor(),

@ -92,6 +92,7 @@ export class SessionClosableOverlay extends React.Component<Props, State> {
id: d.id,
authorPhoneNumber: d.id,
authorProfileName: title,
authorAvatarPath: d.avatarPath,
selected: false,
authorName: name,
authorColor: d.color,

Loading…
Cancel
Save