aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--src/stores/AppStore.js2
2 files changed, 5 insertions, 0 deletions
diff --git a/README.md b/README.md
index 2a0d30f1e..6110573a8 100644
--- a/README.md
+++ b/README.md
@@ -9,6 +9,9 @@
9 9
10Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more. 10Messaging app for WhatsApp, Slack, Telegram, HipChat, Hangouts and many many more.
11 11
12## [Download Franz](https://www.meetfranz.com)
13👉 www.meetfranz.com
14
12 15
13## Development 16## Development
14 17
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index d8ef66a92..ecfd621d3 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -156,6 +156,8 @@ export default class AppStore extends Store {
156 indicator = '•'; 156 indicator = '•';
157 } else if (unreadDirectMessageCount === 0 && unreadIndirectMessageCount === 0) { 157 } else if (unreadDirectMessageCount === 0 && unreadIndirectMessageCount === 0) {
158 indicator = 0; 158 indicator = 0;
159 } else {
160 indicator = parseInt(indicator, 10);
159 } 161 }
160 162
161 ipcRenderer.send('updateAppIndicator', { indicator }); 163 ipcRenderer.send('updateAppIndicator', { indicator });