TPV Compliance issues resolved:
Message Builder is removed entirely as per requested Message Log was updated to be less dependent on the message builder for later removal Version reporting was fixed - Missed some tidbits from Inertia removal Signed-off-by: Beeks <HgDelirium@gmail.com>
This commit is contained in:
@@ -247,10 +247,8 @@ std::string LLViewerMedia::getCurrentUserAgent()
|
||||
|
||||
// Just in case we need to check browser differences in A/B test
|
||||
// builds.
|
||||
// <edit>
|
||||
//std::string channel = gSavedSettings.getString("VersionChannelName");
|
||||
std::string channel = gSavedSettings.getString("SpecifiedChannel");
|
||||
// </edit>
|
||||
|
||||
std::string channel = LL_CHANNEL;
|
||||
|
||||
// append our magic version number string to the browser user agent id
|
||||
// See the HTTP 1.0 and 1.1 specifications for allowed formats:
|
||||
@@ -260,7 +258,7 @@ std::string LLViewerMedia::getCurrentUserAgent()
|
||||
// http://www.mozilla.org/build/revised-user-agent-strings.html
|
||||
std::ostringstream codec;
|
||||
codec << "SecondLife/";
|
||||
codec << gSavedSettings.getU32("SpecifiedVersionMaj") << "." << gSavedSettings.getU32("SpecifiedVersionMin") << "." << gSavedSettings.getU32("SpecifiedVersionPatch") << "." << gSavedSettings.getU32("SpecifiedVersionBuild");
|
||||
codec << LL_VERSION_MAJOR << "." << LL_VERSION_MINOR << "." << LL_VERSION_PATCH << "." << LL_VERSION_BUILD;
|
||||
codec << " (" << channel << "; " << skin_name << " skin)";
|
||||
llinfos << codec.str() << llendl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user