Remove the assert I was using to debug Issue 1670
Apparently it is failing on alphas during initialization (loading log file?) Doesn't matter now, the issue is solved.
This commit is contained in:
@@ -192,7 +192,7 @@ void add_timestamped_line(LLViewerTextEditor* edit, LLChat chat, const LLColor4&
|
|||||||
chat.mURL = llformat("secondlife:///app/agent/%s/about",chat.mFromID.asString().c_str());
|
chat.mURL = llformat("secondlife:///app/agent/%s/about",chat.mFromID.asString().c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(chat.mSourceType == CHAT_SOURCE_OBJECT)
|
if (chat.mSourceType == CHAT_SOURCE_OBJECT)
|
||||||
{
|
{
|
||||||
LLStringUtil::trim(chat.mFromName);
|
LLStringUtil::trim(chat.mFromName);
|
||||||
if (!chat.mFromName.length())
|
if (!chat.mFromName.length())
|
||||||
@@ -200,7 +200,6 @@ void add_timestamped_line(LLViewerTextEditor* edit, LLChat chat, const LLColor4&
|
|||||||
chat.mFromName = LLTrans::getString("Unnamed");
|
chat.mFromName = LLTrans::getString("Unnamed");
|
||||||
line = chat.mFromName + line;
|
line = chat.mFromName + line;
|
||||||
}
|
}
|
||||||
llassert_always(!chat.mURL.empty());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static const LLCachedControl<bool> italicize("LiruItalicizeActions");
|
static const LLCachedControl<bool> italicize("LiruItalicizeActions");
|
||||||
|
|||||||
Reference in New Issue
Block a user