You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It causes double free of Conversations inside ConversationList.
We do mention that we can't call any room modifiers from inside Room's callbacks, but this is a bit different as the call to Room::message_received often results ConversationInterface callback being called. Implying that we can't destroy Room from inside those callbacks neither.
Possible solutions:
Fix it such that Room can be destroyed from inside ConversationInterface callbacks
Update documentation stating that it can't be done.
The text was updated successfully, but these errors were encountered:
It causes double free of Conversations inside ConversationList.
We do mention that we can't call any room modifiers from inside Room's callbacks, but this is a bit different as the call to Room::message_received often results ConversationInterface callback being called. Implying that we can't destroy Room from inside those callbacks neither.
Possible solutions:
The text was updated successfully, but these errors were encountered: