Skip to content

Commit

Permalink
Fix remaining linting errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Oct 24, 2019
1 parent 1e74d02 commit b100a84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ember-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class EmberApp {
if (process.env.APP_CONFIG) {
let appConfig = JSON.parse(process.env.APP_CONFIG);
let appConfigKey = this.appName;
if (!appConfig.hasOwnProperty(appConfigKey)) {
if (!(appConfigKey in appConfig)) {
this.config[appConfigKey] = appConfig;
}
}
Expand Down

0 comments on commit b100a84

Please sign in to comment.