Update ts/mains/main_node.ts

Co-authored-by: Audric Ackermann <audric.bilb@gmail.com>
pull/3216/head
wafflesvsfrankie 5 months ago committed by GitHub
parent 78935dacdf
commit 2e5d2265d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1026,11 +1026,7 @@ ipc.on('get-start-in-tray', event => {
ipcMain.on('update-badge-count', (_event, count) => {
if (app.isReady()) {
if (count === 0) {
app.setBadgeCount(0); // Clear the badge
} else {
app.setBadgeCount(count); // Set the badge count
}
app.setBadgeCount(isNumber(count) && isFinite(count) && count >= 0 ? count : 0);
}
});

Loading…
Cancel
Save