From 871e983800422a761d941386752ac1e4c9c5fff8 Mon Sep 17 00:00:00 2001 From: Gleidson Daniel Silva Date: Tue, 3 May 2022 08:53:18 -0300 Subject: [PATCH] Regression: Fix badge count logic on iOS (#4154) * fix badge count logic * set count default value --- app/lib/notifications/push.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/lib/notifications/push.ts b/app/lib/notifications/push.ts index 436506a2e..a6c06c630 100644 --- a/app/lib/notifications/push.ts +++ b/app/lib/notifications/push.ts @@ -73,8 +73,8 @@ class PushNotification { return this.deviceToken; } - setBadgeCount = (count?: number) => { - if (isIOS && count) { + setBadgeCount = (count = 0) => { + if (isIOS) { Notifications.ios.setBadgeCount(count); } };