Skip to content

Commit

Permalink
updating the terminate command instead of kill in the ipc handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
IsmaelMartinez committed Dec 21, 2023
1 parent 8adcb6e commit 61f8114
Showing 1 changed file with 2 additions and 2 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

0 comments on commit 61f8114

Please sign in to comment.