From 056cff04a1a394a71d1ae69cdeb09d061cc5c94a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 4 Sep 2019 12:57:17 -0400 Subject: [PATCH] badge text number inclusive of 9, resolves #1001 --- src/background/main.background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background/main.background.ts b/src/background/main.background.ts index 3a478525bf..145733d269 100644 --- a/src/background/main.background.ts +++ b/src/background/main.background.ts @@ -480,7 +480,7 @@ export default class MainBackground { } let theText = ''; - if (ciphers.length > 0 && ciphers.length < 9) { + if (ciphers.length > 0 && ciphers.length <= 9) { theText = ciphers.length.toString(); } else if (ciphers.length > 0) { theText = '9+';