diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-01-15 00:35:20 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2021-01-15 00:58:51 +0200 |
commit | 4ba1ea1a651a5ecd11750090b7967356fa0b32d3 (patch) | |
tree | c0d5939b728517b6d388a497da44f1a38494e7fc /indra/newview/llviewerstats.cpp | |
parent | fa710f3a9e11dc857a0eea8d3fe01f50a9b8a02d (diff) |
SL-14283 Don't crash viewer, only show a notification
Diffstat (limited to 'indra/newview/llviewerstats.cpp')
-rw-r--r-- | indra/newview/llviewerstats.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp index 7533c0c789..05f88b0a75 100644 --- a/indra/newview/llviewerstats.cpp +++ b/indra/newview/llviewerstats.cpp @@ -575,6 +575,7 @@ void send_viewer_stats(bool include_preferences) fail["failed_resends"] = (S32) gMessageSystem->mFailedResendPackets; fail["off_circuit"] = (S32) gMessageSystem->mOffCircuitPackets; fail["invalid"] = (S32) gMessageSystem->mInvalidOnCircuitPackets; + fail["missing_updater"] = (S32) LLAppViewer::instance()->isUpdaterMissing(); body["stats"]["voice"] = LLVoiceVivoxStats::getInstance()->read(); |