Skip to content

Commit

Permalink
Fixed another case-sensitivity bug with Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Apr 15, 2017
1 parent d5f58eb commit 9dff312
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var mysqlConnection = mysql.createConnection({
user: config['mysql_username'] || 'root',
password: config['mysql_password'] || '',
port: parseInt(config['mysql_port']) || 3306,
database: 'smartticket',
database: 'smartTicket',
});

// check for new emails ever 30 seconds
Expand Down

0 comments on commit 9dff312

Please sign in to comment.