mirror of
https://github.com/status-im/status-go.git
synced 2025-02-13 15:27:21 +00:00
fix_: store contacts from the backup that were removed
This commit is contained in:
parent
c993c7f6f1
commit
0690be2819
@ -609,7 +609,8 @@ func (m *Messenger) HandleSyncInstallationContactV2(state *ReceivedMessageState,
|
||||
|
||||
contact, contactFound := state.AllContacts.Load(message.Id)
|
||||
if !contactFound {
|
||||
if message.Removed && !message.Blocked {
|
||||
fromPairedDevice := statusMessage != nil
|
||||
if fromPairedDevice && message.Removed && !message.Blocked {
|
||||
// Nothing to do in case if contact doesn't exist
|
||||
return nil
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user