summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerstats.cpp
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2026-04-18 21:47:25 +0800
committerErik Kundiman <erik@megapahit.org>2026-04-18 21:47:25 +0800
commit7d73db9236774e45240602395f544e19ac10bef7 (patch)
treeb04d87fb2781aa7243572b5dbe6749c08b5ec736 /indra/newview/llviewerstats.cpp
parentd490d492b24edfe3747e11066226658849972349 (diff)
parentf4bc7652f8ec4dac7c41e40287615c56ac1cec10 (diff)
Merge tag 'Second_Life_Release#f4bc7652-26.2' into 2026.02
Diffstat (limited to 'indra/newview/llviewerstats.cpp')
-rw-r--r--indra/newview/llviewerstats.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/indra/newview/llviewerstats.cpp b/indra/newview/llviewerstats.cpp
index 5e210312a9..8312bf9e74 100644
--- a/indra/newview/llviewerstats.cpp
+++ b/indra/newview/llviewerstats.cpp
@@ -797,7 +797,11 @@ 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();
+#if LL_VELOPACK
+ fail["missing_updater"] = false;
+#else
+ fail["missing_updater"] = true;
+#endif
LLSD &inventory = body["inventory"];
inventory["usable"] = gInventory.isInventoryUsable();