Skip to content

Commit

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

See merge request megachat/MEGAchat!1881
  • Loading branch information
alfredo-mega committed Mar 26, 2024
2 parents b2420dc + b022773 commit 2dea2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chatClient.cpp
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 2dea2e4

Please sign in to comment.