missing otk count does not mean 0 but rather no change
This commit is contained in:
parent
aabfbf507e
commit
c9d11d6f19
1 changed files with 1 additions and 1 deletions
|
@ -231,7 +231,7 @@ export class Account {
|
|||
|
||||
writeSync(deviceOneTimeKeysCount, txn, log) {
|
||||
// we only upload signed_curve25519 otks
|
||||
const otkCount = deviceOneTimeKeysCount.signed_curve25519 || 0;
|
||||
const otkCount = deviceOneTimeKeysCount.signed_curve25519;
|
||||
if (Number.isSafeInteger(otkCount) && otkCount !== this._serverOTKCount) {
|
||||
txn.session.set(SERVER_OTK_COUNT_SESSION_KEY, otkCount);
|
||||
log.set("otkCount", otkCount);
|
||||
|
|
Reference in a new issue