diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-07-07 11:47:25 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-07-07 11:47:25 +0800 |
commit | dba8e9044e589e25665c7bb32adef811903dec86 (patch) | |
tree | 0ccb38c84a05e36353d837fd6b2bd66426923c20 | |
parent | 360df5406e70cdae305701451b3805d31697a004 (diff) |
Revert "Adjust viewer name for when logging the skin used"
This reverts commit ced2d634a76561d231e2c5854721c643ac071916.
Turns out the original string is depended on by in-world creations,
specifically HUDs, to determine whether the media is viewed from
within SL or not.
Thank you Jenni Windrider for pointing this out.
-rw-r--r-- | indra/newview/llviewermedia.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llviewermedia.cpp b/indra/newview/llviewermedia.cpp index 569924298f..ce8ce791b9 100644 --- a/indra/newview/llviewermedia.cpp +++ b/indra/newview/llviewermedia.cpp @@ -397,7 +397,7 @@ std::string LLViewerMedia::getCurrentUserAgent() // This was also helpful: // http://www.mozilla.org/build/revised-user-agent-strings.html std::ostringstream codec; - codec << "Megapahit/"; + codec << "SecondLife/"; codec << LLVersionInfo::instance().getVersion(); codec << " (" << channel << "; " << skin_name << " skin)"; LL_INFOS() << codec.str() << LL_ENDL; |