mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-20 06:39:54 +01:00
Fix column index in getLocalAuthor().
This commit is contained in:
@@ -1680,7 +1680,7 @@ abstract class JdbcDatabase implements Database<Connection> {
|
|||||||
byte[] privateKey = rs.getBytes(4);
|
byte[] privateKey = rs.getBytes(4);
|
||||||
byte[] handshakePublicKey = rs.getBytes(5);
|
byte[] handshakePublicKey = rs.getBytes(5);
|
||||||
byte[] handshakePrivateKey = rs.getBytes(6);
|
byte[] handshakePrivateKey = rs.getBytes(6);
|
||||||
long created = rs.getLong(5);
|
long created = rs.getLong(7);
|
||||||
LocalAuthor localAuthor = new LocalAuthor(a, formatVersion, name,
|
LocalAuthor localAuthor = new LocalAuthor(a, formatVersion, name,
|
||||||
publicKey, privateKey, handshakePublicKey,
|
publicKey, privateKey, handshakePublicKey,
|
||||||
handshakePrivateKey, created);
|
handshakePrivateKey, created);
|
||||||
|
|||||||
Reference in New Issue
Block a user