diff --git a/gui/main.js b/gui/main.js index 13d9fb61..a888601e 100644 --- a/gui/main.js +++ b/gui/main.js @@ -465,7 +465,7 @@ ipcMain.on("request-update-reception-status", (event, arg) => { }); //Called by main to query chat if there are new messages -ipcMain.on("request-update-unread-messages", (event) => { +ipcMain.on("request-update-unread-messages",() => { //mainLog.info("Got request to check if chat has new messages") chat.webContents.send("action-update-unread-messages"); diff --git a/tnc/audio.py b/tnc/audio.py index 237dd6f4..e4397b86 100644 --- a/tnc/audio.py +++ b/tnc/audio.py @@ -78,7 +78,7 @@ def fetch_audio_devices(input_devices, output_devices): name = device["name"] # Ignore some Flex Radio devices to make device selection simpler if name.startswith("DAX RESERVED") or name.startswith("DAX IQ"): - continue; + continue max_output_channels = device["max_output_channels"] max_input_channels = device["max_input_channels"]