EteSync api: fill in the collection info's uid.

master
Tom Hacohen 7 years ago
parent 29a608db79
commit e22b520b5a

@ -143,7 +143,9 @@ export class Journal extends BaseJournal<JournalJson> {
this._content = JSON.parse(cryptoManager.decrypt(this.encryptedContent())); this._content = JSON.parse(cryptoManager.decrypt(this.encryptedContent()));
} }
return new CollectionInfo(this._content); let ret = new CollectionInfo(this._content);
ret.uid = this.uid;
return ret;
} }
calculateHmac(cryptoManager: CryptoManager, encrypted: byte[]): byte[] { calculateHmac(cryptoManager: CryptoManager, encrypted: byte[]): byte[] {

Loading…
Cancel
Save