summaryrefslogtreecommitdiffstats
path: root/src/index.ts
diff options
context:
space:
mode:
authorLibravatar André Oliveira <37463445+SpecialAro@users.noreply.github.com>2024-05-02 17:38:48 +0100
committerLibravatar GitHub <noreply@github.com>2024-05-02 17:38:48 +0100
commit92d845adc3c07bcea290eb6fefe0a998cd8f7a98 (patch)
tree1133efe2b1bd9f678cf912bb83f87e8e005bf1f1 /src/index.ts
parentUpgrade electron to '30.0.2' (diff)
downloadferdium-app-92d845adc3c07bcea290eb6fefe0a998cd8f7a98.tar.gz
ferdium-app-92d845adc3c07bcea290eb6fefe0a998cd8f7a98.tar.zst
ferdium-app-92d845adc3c07bcea290eb6fefe0a998cd8f7a98.zip
fix: screenshare feature not working on Teams (#1733)
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index 999d84348..cccf0ef66 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -610,6 +610,11 @@ ipcMain.on('feature-basic-auth-cancel', () => {
610 authCallback = noop; 610 authCallback = noop;
611}); 611});
612 612
613ipcMain.on('load-available-displays', (_e, data) => {
614 debug('MAIN PROCESS: Received load-desktop-capturer-sources');
615 mainWindow?.webContents.send(`select-capture-device:${data.serviceId}`, data);
616});
617
613// Handle synchronous messages from service webviews. 618// Handle synchronous messages from service webviews.
614 619
615ipcMain.on('find-in-page', (e, text, options) => { 620ipcMain.on('find-in-page', (e, text, options) => {