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
|
||||
}
|
||||
|
||||
err := m.BuildProfileShowcaseFromIdentity(state, ci.ProfileShowcase)
|
||||
if err != nil {
|
||||
return err
|
||||
if ci.ProfileShowcase != nil {
|
||||
err := m.BuildProfileShowcaseFromIdentity(state, ci.ProfileShowcase)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue