Code quality fixes

This commit is contained in:
Mashintime 2023-06-11 02:29:31 -04:00
parent 0697ecd0e9
commit edd53929be
2 changed files with 2 additions and 2 deletions

View file

@ -465,7 +465,7 @@ ipcMain.on("request-update-reception-status", (event, arg) => {
}); });
//Called by main to query chat if there are new messages //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") //mainLog.info("Got request to check if chat has new messages")
chat.webContents.send("action-update-unread-messages"); chat.webContents.send("action-update-unread-messages");

View file

@ -78,7 +78,7 @@ def fetch_audio_devices(input_devices, output_devices):
name = device["name"] name = device["name"]
# Ignore some Flex Radio devices to make device selection simpler # Ignore some Flex Radio devices to make device selection simpler
if name.startswith("DAX RESERVED") or name.startswith("DAX IQ"): if name.startswith("DAX RESERVED") or name.startswith("DAX IQ"):
continue; continue
max_output_channels = device["max_output_channels"] max_output_channels = device["max_output_channels"]
max_input_channels = device["max_input_channels"] max_input_channels = device["max_input_channels"]