Browse Source

fix: Incorrectly start in Heroku mode

pull/89/head
NGPixel 7 years ago
parent
commit
3619232af2
1 changed files with 1 additions and 1 deletions
  1. 2
      server/init.js

2
server/init.js

@ -13,7 +13,7 @@ module.exports = {
* Detect the most appropriate start mode
*/
startDetect: function () {
if (!process.env.IS_HEROKU) {
if (process.env.IS_HEROKU) {
return this.startInHerokuMode()
} else {
return this.startInBackgroundMode()

Loading…
Cancel
Save