aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/lib
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-14 13:37:47 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-14 13:37:47 +0530
commit30ca63d84ccf7fbc378ebf7101f09e10deaf0eaa (patch)
tree27f8ff6265a6fd2a739b8875825504bb86f279f3 /src/webview/lib
parentdocs: updated Changelog [skip ci] (diff)
downloadferdium-app-30ca63d84ccf7fbc378ebf7101f09e10deaf0eaa.tar.gz
ferdium-app-30ca63d84ccf7fbc378ebf7101f09e10deaf0eaa.tar.zst
ferdium-app-30ca63d84ccf7fbc378ebf7101f09e10deaf0eaa.zip
refactor: defensive programming to avoid javascript error for unread badges
Diffstat (limited to 'src/webview/lib')
-rw-r--r--src/webview/lib/RecipeWebview.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/webview/lib/RecipeWebview.js b/src/webview/lib/RecipeWebview.js
index 2bd6bad8d..157da7693 100644
--- a/src/webview/lib/RecipeWebview.js
+++ b/src/webview/lib/RecipeWebview.js
@@ -35,12 +35,12 @@ class RecipeWebview {
35 /** 35 /**
36 * Set the unread message badge 36 * Set the unread message badge
37 * 37 *
38 * @param {int} direct Set the count of direct messages 38 * @param {string | number | undefined | null} direct Set the count of direct messages
39 * eg. Slack direct mentions, or a 39 * eg. Slack direct mentions, or a
40 * message to @channel 40 * message to @channel
41 * @param {int} indirect Set a badge that defines there are 41 * @param {string | number | undefined | null} indirect Set a badge that defines there are
42 * new messages but they do not involve 42 * new messages but they do not involve
43 * me directly to me eg. in a channel 43 * me directly to me eg. in a channel
44 */ 44 */
45 setBadge(direct = 0, indirect = 0) { 45 setBadge(direct = 0, indirect = 0) {
46 this.badgeHandler.setBadge(direct, indirect); 46 this.badgeHandler.setBadge(direct, indirect);