Skip to content
Snippets Groups Projects
Commit 53eff025 authored by maksymsproductengine's avatar maksymsproductengine
Browse files

MAINT-2938 FIXED [CHUI] crash in LLFloaterConversationPreview::showHistory()

parent 22140012
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,11 @@ void LLFloaterConversationPreview::showHistory()
for (int msg_num = 0; (iter != mMessages.end() && msg_num < mPageSize); ++iter, ++msg_num)
{
if (iter->size() == 0)
{
continue;
}
LLSD msg = *iter;
LLUUID from_id = LLUUID::null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment