mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-17 05:09:53 +01:00
Incorrect key derivation flag was stored during invitation process.
This commit is contained in:
@@ -160,7 +160,7 @@ class BobConnector extends Connector {
|
|||||||
long epoch = Math.min(localTimestamp, remoteTimestamp);
|
long epoch = Math.min(localTimestamp, remoteTimestamp);
|
||||||
// Add the contact and store the transports
|
// Add the contact and store the transports
|
||||||
try {
|
try {
|
||||||
addContact(remoteAuthor, remoteProps, secret, epoch, true);
|
addContact(remoteAuthor, remoteProps, secret, epoch, false);
|
||||||
} catch(DbException e) {
|
} catch(DbException e) {
|
||||||
if(LOG.isLoggable(WARNING)) LOG.log(WARNING, e.toString(), e);
|
if(LOG.isLoggable(WARNING)) LOG.log(WARNING, e.toString(), e);
|
||||||
tryToClose(conn, true);
|
tryToClose(conn, true);
|
||||||
|
|||||||
Reference in New Issue
Block a user