From c0b7d5d08e92d2181175c8c38a961fe916fc59b9 Mon Sep 17 00:00:00 2001 From: Aaron Crosman Date: Tue, 18 Aug 2020 22:27:47 -0400 Subject: [PATCH] Language fix --- app/consolePreload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/consolePreload.js b/app/consolePreload.js index f3aaf48..3f15ef5 100644 --- a/app/consolePreload.js +++ b/app/consolePreload.js @@ -7,7 +7,7 @@ const { contextBridge, ipcRenderer, remote } = require('electron'); // eslint-d contextBridge.exposeInMainWorld( 'api', { send: (channel, data) => { - // whitelist channels + // Approved channels const validChannels = []; if (validChannels.includes(channel)) { ipcRenderer.send(channel, data);