Fix retrieving log from SQLBacking

This commit is contained in:
Luck 2017-01-08 20:12:33 +00:00
parent 960c2291b6
commit 7042c45deb
No known key found for this signature in database
GPG Key ID: EFA9B3EC5FD90F8B

View File

@ -221,6 +221,7 @@ public class SQLBacking extends AbstractBacking {
try (Connection c = provider.getConnection()) {
try (PreparedStatement ps = c.prepareStatement(prefix.apply(ACTION_SELECT_ALL))) {
try (ResultSet rs = ps.executeQuery()) {
while (rs.next()) {
final String actedUuid = rs.getString("acted_uuid");
LogEntry e = new LogEntry(
rs.getLong("time"),
@ -234,6 +235,7 @@ public class SQLBacking extends AbstractBacking {
log.add(e);
}
}
}
} catch (SQLException e) {
e.printStackTrace();
return null;