remove debug message

This commit is contained in:
theolivenbaum
2021-09-02 16:45:20 +02:00
parent 4fae2aeef2
commit c229d49765

View File

@@ -40,7 +40,6 @@ module.exports = (socket) => {
});
socket.on('sendToIpcRenderer', (browserWindowId, channel, ...data) => {
const window = electron_1.BrowserWindow.fromId(browserWindowId);
console.log(data);
if (window) {
window.webContents.send(channel, ...data);
}