fix: Incorrectly start in Heroku mode

pull/89/head
NGPixel 8 years ago
parent 2db66601be
commit 3619232af2

@ -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