Force cid conversation to string in DeleteContact event #517

Merged
sarah merged 2 commits from deletecontactfix into master 2023-06-13 17:48:51 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 2bbe0c48d6 - Show all commits

View File

@ -770,7 +770,7 @@ func (cp *cwtchPeer) DeleteConversation(id int) error {
ci, err := cp.storage.GetConversation(id)
if err == nil && ci != nil {
log.Debugf("deleting %v", ci)
cp.eventBus.Publish(event.NewEventList(event.DeleteContact, event.RemotePeer, ci.Handle, event.ConversationID, id))
cp.eventBus.Publish(event.NewEventList(event.DeleteContact, event.RemotePeer, ci.Handle, event.ConversationID, strconv.Itoa(id)))
return cp.storage.DeleteConversation(id)
}
return fmt.Errorf("could not delete conversation, did not exist")