fix: permission handler regression in default app (#17927)

This commit is contained in:
Milan Burda 2019-04-24 18:54:53 +02:00 коммит произвёл Shelley Vohr
Родитель 4556433f3b
Коммит f7a38ec72a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -81,7 +81,7 @@ async function createWindow () {
cancelId: 1
}
dialog.showMessageBox(mainWindow!, options).then(response => {
dialog.showMessageBox(mainWindow!, options).then(({ response }) => {
done(response === 0)
})
})