electron-in-action / firesale

Mozilla Public License 2.0
74 stars 41 forks source link

Chapter 8: shell.openItem() no longer exists #12

Open robertpatrick opened 3 years ago

robertpatrick commented 3 years ago

Need to fix the example to do something like this:

  shell.openPath(filePath)
    .then(err => {
      if (err !== '') {
        alert(err)
      }
    })