Fix column index in getLocalAuthor().

This commit is contained in:
akwizgran
2019-04-18 13:35:42 +01:00
parent 456f25b701
commit f82294527f

View File

@@ -1680,7 +1680,7 @@ abstract class JdbcDatabase implements Database<Connection> {
byte[] privateKey = rs.getBytes(4);
byte[] handshakePublicKey = rs.getBytes(5);
byte[] handshakePrivateKey = rs.getBytes(6);
long created = rs.getLong(5);
long created = rs.getLong(7);
LocalAuthor localAuthor = new LocalAuthor(a, formatVersion, name,
publicKey, privateKey, handshakePublicKey,
handshakePrivateKey, created);