diff options
| author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-06-20 23:29:38 +0300 | 
|---|---|---|
| committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-06-21 11:46:25 +0300 | 
| commit | e4fd1bd71ef31b34ea92e2b5b5be4e08aad42269 (patch) | |
| tree | 6d3c492e0045eb5512406cfcbffba503d36b3cea /indra/newview | |
| parent | 68963019cd62fedf94ade25c83f22804ec237818 (diff) | |
viewer#1808 Use bugsplat's setAttribute for app state
Diffstat (limited to 'indra/newview')
| -rw-r--r-- | indra/newview/llappviewerwin32.cpp | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 5ae1e2f43c..3cdae041fc 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -77,6 +77,7 @@  #include "BugSplat.h"  #include "boost/json.hpp"                 // Boost.Json  #include "llagent.h"                // for agent location +#include "llstartup.h"  #include "llviewerregion.h"  #include "llvoavatarself.h"         // for agent name @@ -138,8 +139,7 @@ namespace              // We don't have an email address for any user. Hijack this              // metadata field for the platform identifier.              sBugSplatSender->setDefaultUserEmail( -                WCSTR(STRINGIZE(LLOSInfo::instance().getOSStringSimple() << " (" -                                << ADDRESS_SIZE << "-bit)"))); +                WCSTR(LLOSInfo::instance().getOSStringSimple()));              if (gAgentAvatarp)              { @@ -152,6 +152,8 @@ namespace              // LL_ERRS message, when there is one              sBugSplatSender->setDefaultUserDescription(WCSTR(LLError::getFatalMessage())); +            // App state +            sBugSplatSender->setAttribute(WCSTR(L"AppState"), WCSTR(LLStartUp::getStartupStateString()));              if (gAgent.getRegion())              { | 
