Fixed returnValue of get-timeline

This commit is contained in:
kPherox 2019-05-19 23:25:38 +09:00
parent 29b82abead
commit 78f258495d
No known key found for this signature in database
GPG Key ID: C04751C2BFA2F62D

View File

@ -27,7 +27,7 @@ export default class Timeline {
public static ready() {
ipcMain.on('add-timeline', (event: Event, name: string, type: string) => this.onAddTimeline(event, name, type))
ipcMain.on('get-timeline', (event: Event, id: string) => event.returnValue = this.getTimeline(id))
ipcMain.on('get-timeline', async (event: Event, id: string) => event.returnValue = await this.getTimeline(id))
ipcMain.on('no-auth-timeline', (event: Event, name: string) => this.onNoAuthTimeline(event, name))