Skip to content

Commit

Permalink
Merge branch 'hotfix/cht-1203-fix-meetings-title' into 'release/v5.0.0'
Browse files Browse the repository at this point in the history
CHT-1203. Wrong meetings title reported upon onChatListItemUpdate (hotfix for v5.0.0)

See merge request megachat/MEGAchat!1882
  • Loading branch information
alfredo-mega committed Mar 26, 2024
2 parents 1a1e0f5 + b022773 commit ba8b607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chatClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4280,7 +4280,7 @@ void GroupChatRoom::syncChatTitle(const mega::MegaTextChat& chat, const bool mem
err.what());
});
}
else if (membersChanged)
else if (!mHasTitle && membersChanged)
{
KR_LOG_DEBUG("Empty title received for groupchat %s. Peers changed, updating title...",
ID_CSTR(mChatid));
Expand Down

0 comments on commit ba8b607

Please sign in to comment.