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:
Inusaito Sayori
2014-12-17 01:28:13 -05:00
parent 81ef1292ed
commit ca8aa4dc0a

View File

@@ -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());
}
if(chat.mSourceType == CHAT_SOURCE_OBJECT)
if (chat.mSourceType == CHAT_SOURCE_OBJECT)
{
LLStringUtil::trim(chat.mFromName);
if (!chat.mFromName.length())
@@ -200,7 +200,6 @@ void add_timestamped_line(LLViewerTextEditor* edit, LLChat chat, const LLColor4&
chat.mFromName = LLTrans::getString("Unnamed");
line = chat.mFromName + line;
}
llassert_always(!chat.mURL.empty());
}
static const LLCachedControl<bool> italicize("LiruItalicizeActions");