diff --git a/doc/contributions.txt b/doc/contributions.txt
index e67df2453e678e5e3f5dc18a8ca700fd14ff36f6..fcadccab22c86518112d598b97d64c68fca2f82a 100755
--- a/doc/contributions.txt
+++ b/doc/contributions.txt
@@ -219,6 +219,7 @@ Ansariel Hiller
 	STORM-2105
 	STORM-2151
 	MAINT-8085
+	STORM-2122
 Aralara Rajal
 Arare Chantilly
 	CHUIBUG-191
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index 52dc3fbb69b63e2663fcdfb0d80a5ef0e95850d4..feaafad2e12810c1814ac07fc8646fbba2fb42c0 100644
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -1877,7 +1877,7 @@ void LLViewerRegion::updateNetStats()
 	mLastPacketsLost =	mPacketsLost;
 
 	mPacketsIn =				cdp->getPacketsIn();
-	mBitsIn =					8 * cdp->getBytesIn();
+	mBitsIn =					cdp->getBytesIn();
 	mPacketsOut =				cdp->getPacketsOut();
 	mPacketsLost =				cdp->getPacketsLost();
 	mPingDelay =				cdp->getPingDelay();