Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
Fixed error in typeof check
Browse files Browse the repository at this point in the history
  • Loading branch information
rmetcalf9 committed Feb 5, 2018
1 parent 1289db2 commit 275c0b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/default-user-seed-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var fs = require('fs');
*/
function getseedData() {
var readEnvVar = process.env.KONGA_SEED_USER_DATA_SOURCE_FILE;
if (typeof(readEnvVar) == undefined) {
if (typeof(readEnvVar) == 'undefined') {
readEnvVar = undefined;
} else {
readEnvVar = readEnvVar.trim();
Expand Down

0 comments on commit 275c0b9

Please sign in to comment.