We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1028ba8 commit fb35dc1Copy full SHA for fb35dc1
1 file changed
src/main/java/com/ffxivcensus/gatherer/GathererController.java
@@ -427,7 +427,7 @@ protected String writeToDB(Player player) {
427
String tableName;
428
//Determine table to write to
429
if (splitTables){
430
- tableName = "tbl" + player.getRealm() + tableSuffix;
+ tableName = "tbl" + player.getRealm().toLowerCase() + tableSuffix;
431
} else {
432
tableName = this.tableName + tableSuffix;
433
}
0 commit comments