forked from MirrorHub/mautrix-whatsapp
Only resync avatar if the user sync query returns one
This commit is contained in:
parent
19b4c3093a
commit
52e3cdb121
1 changed files with 1 additions and 1 deletions
2
user.go
2
user.go
|
@ -334,7 +334,7 @@ func (user *User) doPuppetResync() {
|
|||
} else if contact.Found {
|
||||
contactPtr = &contact
|
||||
}
|
||||
puppet.Sync(user, contactPtr, info.PictureID != puppet.Avatar)
|
||||
puppet.Sync(user, contactPtr, info.PictureID != "" && info.PictureID != puppet.Avatar)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue