Skip to content

Commit fb35dc1

Browse files
committed
[BUG FIX] Table names to lower case in line with elsewhere in application
1 parent 1028ba8 commit fb35dc1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/ffxivcensus/gatherer/GathererController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ protected String writeToDB(Player player) {
427427
String tableName;
428428
//Determine table to write to
429429
if (splitTables){
430-
tableName = "tbl" + player.getRealm() + tableSuffix;
430+
tableName = "tbl" + player.getRealm().toLowerCase() + tableSuffix;
431431
} else {
432432
tableName = this.tableName + tableSuffix;
433433
}

0 commit comments

Comments
 (0)