Fixes
This commit is contained in:
@@ -91,8 +91,12 @@ export const userEntityDiff = async (
|
||||
sinceTime: number,
|
||||
entityKeyB64: string,
|
||||
): Promise<UserEntity[]> => {
|
||||
const decrypt = (dataB64: string, headerB64: string) =>
|
||||
decryptMetadataBytes(dataB64, headerB64, entityKeyB64);
|
||||
const decrypt = (encryptedDataB64: string, decryptionHeaderB64: string) =>
|
||||
decryptMetadataBytes({
|
||||
encryptedDataB64,
|
||||
decryptionHeaderB64,
|
||||
keyB64: entityKeyB64,
|
||||
});
|
||||
|
||||
const params = new URLSearchParams({
|
||||
type,
|
||||
|
||||
Reference in New Issue
Block a user