Browse Source

Remove unhandled promise error

feat-mydojo_upgrade_explorer
Jonathan Underwood 5 years ago
committed by GitHub
parent
commit
2b093d104c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      accounts/index.js

5
accounts/index.js

@ -73,4 +73,7 @@
// Attach the web sockets server to the web server
notifServer.attach(httpServer)
})()
})().catch(err => {
console.error(err)
process.exit(1)
})

Loading…
Cancel
Save