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

master
Tom Hacohen 2017-12-12 18:52:59 +00:00
parent 29a608db79
commit e22b520b5a
1 changed files with 3 additions and 1 deletions

View File

@ -143,7 +143,9 @@ export class Journal extends BaseJournal<JournalJson> {
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[] {