1
0
mirror of https://github.com/rhysd/Mstdn.git synced 2024-11-28 20:24:10 +01:00

fix IPC event handling on macOS

This commit is contained in:
rhysd 2017-04-20 00:21:23 +09:00
parent 4169bcf902
commit e323625cca

View File

@ -4,8 +4,13 @@ const electron = r('electron');
const ipc = electron.ipcRenderer;
export function on(channel: IpcChannelFromMain, callback: (...args: any[]) => void) {
ipc.on(channel, (_, ...args: any[]) => {
ipc.on(channel, (...args: any[]) => {
log.info('IPC: Received from:', channel, args);
// XXX: Weird...
// First element is Event in Windows as documented. But not in macOS.
if (args[0] instanceof Event) {
args = args.splice(1);
}
callback(...args);
});
}