From d251b3ade75e000a76946674a42ee0d0b3f216e7 Mon Sep 17 00:00:00 2001
From: maxim_productengine <mnikolenko@productengine.com>
Date: Wed, 24 Jan 2018 15:41:43 +0200
Subject: [PATCH] MAINT-8180 Help > Report Bug does not include viewer bitness

---
 indra/newview/llappviewer.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index ea6842b62a9..d48ff458d71 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -3305,8 +3305,8 @@ std::string LLAppViewer::getShortViewerInfoString() const
 	std::ostringstream support;
 	LLSD info(getViewerInfo());
 
-	support << LLTrans::getString("APP_NAME") << " " << info["VIEWER_VERSION_STR"].asString();
-	support << " (" << info["CHANNEL"].asString() << ")";
+	support << info["CHANNEL"].asString() << " ";
+	support << info["VIEWER_VERSION_STR"].asString() << " (" << info["ADDRESS_SIZE"].asString() << "bit)";
 	if (info.has("BUILD_CONFIG"))
 	{
 		support << "\n" << "Build Configuration " << info["BUILD_CONFIG"].asString();
-- 
GitLab