Closed daviwil closed 5 years ago
This change removes the use of fs.statSyncNoException which was deprecated in Electron 3.0. Since the usage of this function was already inside of a try/catch block, I've switched it to fs.statSync.
fs.statSyncNoException
fs.statSync
Fixes #105.
This change removes the use of
fs.statSyncNoException
which was deprecated in Electron 3.0. Since the usage of this function was already inside of a try/catch block, I've switched it tofs.statSync
.Fixes #105.