mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2025-03-07 17:28:03 +08:00
Fixed wrong html being cached due to DESC order of queries.
This commit is contained in:
parent
1c91174ec0
commit
1945984fc4
@ -155,9 +155,10 @@ public class TransferTable extends Table {
|
||||
while (set.next()) {
|
||||
String uuidString = set.getString(columnExtraVariables);
|
||||
UUID uuid = UUID.fromString(uuidString);
|
||||
String html64 = set.getString(columnContent);
|
||||
|
||||
htmlPerUUID.put(uuid, html64);
|
||||
if (!htmlPerUUID.containsKey(uuid)) {
|
||||
htmlPerUUID.put(uuid, set.getString(columnContent));
|
||||
}
|
||||
}
|
||||
return htmlPerUUID;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user