No exceptions on unrecognized messages.

This commit is contained in:
Shyotl
2019-07-10 01:06:21 -05:00
parent 49b027f2a0
commit f16bde1ac8

View File

@@ -501,9 +501,10 @@ BOOL LLTemplateMessageReader::decodeTemplate(
else
{
if(!custom) {
// MAINT-7482 - make viewer more tolerant of unknown messages.
LL_WARNS() << "Message #" << std::hex << num << std::dec
<< " received but not registered!" << LL_ENDL;
gMessageSystem->callExceptionFunc(MX_UNREGISTERED_MESSAGE);
//gMessageSystem->callExceptionFunc(MX_UNREGISTERED_MESSAGE);
}
return(FALSE);
}