Skip to content

Commit

Permalink
Bug/1053 update ipc handlers for incomming call command (#1054)
Browse files Browse the repository at this point in the history
* updating the terminate command instead of kill in the ipc handlers

* increasing version number
  • Loading branch information
IsmaelMartinez authored Dec 21, 2023
1 parent 8adcb6e commit 43ee13e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/mainAppWindow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -447,8 +447,8 @@ function assignEventHandlers(newWindow) {
ipcMain.on('select-source', assignSelectSourceHandler());
ipcMain.handle('select-source-wayland', assignSelectSourceHandlerWayland());
ipcMain.handle('incoming-call-created', handleOnIncomingCallCreated);
ipcMain.handle('incoming-call-connecting', incomingCallCommandKill);
ipcMain.handle('incoming-call-disconnecting', incomingCallCommandKill);
ipcMain.handle('incoming-call-connecting', incomingCallCommandTerminate);
ipcMain.handle('incoming-call-disconnecting', incomingCallCommandTerminate);
ipcMain.handle('call-connected', handleOnCallConnected);
ipcMain.handle('call-disconnected', handleOnCallDisconnected);
if (config.screenLockInhibitionMethod === 'WakeLockSentinel') {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "teams-for-linux",
"version": "1.4.0",
"version": "1.4.1",
"main": "app/index.js",
"description": "Unofficial client for Microsoft Teams for Linux",
"homepage": "https://github.com/IsmaelMartinez/teams-for-linux",
Expand Down

0 comments on commit 43ee13e

Please sign in to comment.