aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/slack/webview.js
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-27 05:25:50 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-27 05:25:50 +0530
commita86245afc0c4aaca259d5c3f014794dbc4d913de (patch)
tree4b3fe945bafca56b5ea71975c75e2eb513575ac6 /recipes/slack/webview.js
parentrefactor: add 'serviceId' when invoking 'clearStorageData' (#726) (diff)
downloadferdium-recipes-a86245afc0c4aaca259d5c3f014794dbc4d913de.tar.gz
ferdium-recipes-a86245afc0c4aaca259d5c3f014794dbc4d913de.tar.zst
ferdium-recipes-a86245afc0c4aaca259d5c3f014794dbc4d913de.zip
refactor: remove references 'Ferdi.ipcRenderer' in recipes - create an abstraction layer instead for better maintainance
Diffstat (limited to 'recipes/slack/webview.js')
-rw-r--r--recipes/slack/webview.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/slack/webview.js b/recipes/slack/webview.js
index 3064e79..23cede8 100644
--- a/recipes/slack/webview.js
+++ b/recipes/slack/webview.js
@@ -36,7 +36,7 @@ module.exports = Ferdi => {
36 countTeamIconCheck += 1; 36 countTeamIconCheck += 1;
37 37
38 if (bgUrl) { 38 if (bgUrl) {
39 Ferdi.ipcRenderer.sendToHost('avatar', bgUrl); 39 Ferdi.setAvatarImage(bgUrl);
40 } else if (countTeamIconCheck <= 5) { 40 } else if (countTeamIconCheck <= 5) {
41 setTimeout(() => { 41 setTimeout(() => {
42 getTeamIcon(countTeamIconCheck + 1); 42 getTeamIcon(countTeamIconCheck + 1);