Do not set dot badge for windows app

paste-quickfix
Magnus Hauge Bakke 9 years ago
parent 570f293399
commit 7aad726269
  1. 2
      electron-main.js

@ -196,7 +196,7 @@
} }
else if (process.platform === "win32") { else if (process.platform === "win32") {
// If we get a . it means there's unread messages. We don't care about that // If we get a . it means there's unread messages. We don't care about that
if (arg === '.') { if (arg === '.' || arg === '•') {
return; return;
} }
let n = parseInt(arg, 10); let n = parseInt(arg, 10);

Loading…
Cancel
Save