summaryrefslogtreecommitdiffstats
path: root/js/app/services/unreadcountformatter.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'js/app/services/unreadcountformatter.coffee')
-rw-r--r--js/app/services/unreadcountformatter.coffee4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/app/services/unreadcountformatter.coffee b/js/app/services/unreadcountformatter.coffee
index ec45bc21e..d89e7b59d 100644
--- a/js/app/services/unreadcountformatter.coffee
+++ b/js/app/services/unreadcountformatter.coffee
@@ -23,6 +23,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
angular.module('News').factory 'unreadCountFormatter', ->
return (unreadCount) ->
- if unreadCount > 99
- unreadCount = '99+'
+ if unreadCount > 999
+ unreadCount = '999+'
return unreadCount \ No newline at end of file