aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/intercom
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/intercom')
-rw-r--r--recipes/intercom/package.json2
-rw-r--r--recipes/intercom/webview.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/recipes/intercom/package.json b/recipes/intercom/package.json
index e599308..2fc2e39 100644
--- a/recipes/intercom/package.json
+++ b/recipes/intercom/package.json
@@ -1,7 +1,7 @@
1{ 1{
2 "id": "intercom", 2 "id": "intercom",
3 "name": "Intercom", 3 "name": "Intercom",
4 "version": "1.1.1", 4 "version": "1.1.2",
5 "license": "MIT", 5 "license": "MIT",
6 "config": { 6 "config": {
7 "serviceURL": "https://app.intercom.io/", 7 "serviceURL": "https://app.intercom.io/",
diff --git a/recipes/intercom/webview.js b/recipes/intercom/webview.js
index a29db21..1ccf8a0 100644
--- a/recipes/intercom/webview.js
+++ b/recipes/intercom/webview.js
@@ -1,5 +1,5 @@
1module.exports = (Ferdi) => { 1module.exports = (Ferdi) => {
2 function getMessages() { 2 const getMessages = () => {
3 const numMessages = Ferdi.safeParseInt(document.querySelector('.left-nav [data-content="Inbox"] .unread__container .unread').innerHTML); 3 const numMessages = Ferdi.safeParseInt(document.querySelector('.left-nav [data-content="Inbox"] .unread__container .unread').innerHTML);
4 Ferdi.setBadge(numMessages); 4 Ferdi.setBadge(numMessages);
5 } 5 }