Merge branch 'notifications-dot' of https://github.com/burtonemily/session-desktop into notifications-dot

pull/3216/head
wafflesvsfrankie 5 months ago
commit 144a0243a0

@ -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