[Splash > Preload] Cleanup source (remove unused native)

This commit is contained in:
Ducko 2022-02-10 21:05:37 +00:00
parent 399ab4f861
commit 73bc0650d4
2 changed files with 1 additions and 8 deletions

View File

@ -427,10 +427,6 @@ function launchSplashWindow(startMinimized) {
}
});
ipcMain.on('DISCORD_SPLASH_SCREEN_QUIT', () => {
_electron.app.quit();
});
const splashUrl = _url.default.format({
protocol: 'file',
slashes: true,

View File

@ -3,8 +3,5 @@ const { contextBridge, ipcRenderer } = require('electron');
contextBridge.exposeInMainWorld('DiscordSplash', {
signalReady: () => ipcRenderer.send('DISCORD_SPLASH_SCREEN_READY'),
onStateUpdate: callback => ipcRenderer.on('DISCORD_SPLASH_UPDATE_STATE', (_, state) => callback(state)),
quitDiscord: () => ipcRenderer.send('DISCORD_SPLASH_SCREEN_QUIT')
onStateUpdate: callback => ipcRenderer.on('DISCORD_SPLASH_UPDATE_STATE', (_, state) => callback(state))
});