summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/public/app.js')
-rw-r--r--js/public/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/public/app.js b/js/public/app.js
index b5eef7e34..a4dda620b 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -3236,8 +3236,8 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
(function() {
angular.module('News').factory('unreadCountFormatter', function() {
return function(unreadCount) {
- if (unreadCount > 99) {
- unreadCount = '99+';
+ if (unreadCount > 999) {
+ unreadCount = '999+';
}
return unreadCount;
};