Partly fixes https://github.com/status-im/status-desktop/issues/12695
This commit is contained in:
parent
de29ec71ae
commit
2076853ce3
|
@ -2927,9 +2927,11 @@ func (m *Messenger) HandleChatIdentity(state *ReceivedMessageState, ci *protobuf
|
||||||
contactModified = true
|
contactModified = true
|
||||||
}
|
}
|
||||||
|
|
||||||
err := m.BuildProfileShowcaseFromIdentity(state, ci.ProfileShowcase)
|
if ci.ProfileShowcase != nil {
|
||||||
if err != nil {
|
err := m.BuildProfileShowcaseFromIdentity(state, ci.ProfileShowcase)
|
||||||
return err
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue