Partially revert "Sender Key: Prepare for testing in beta"

Partial revert of commit ab5a12fded
This commit is contained in:
Scott Nonnenberg 2021-08-04 16:49:05 -07:00 committed by GitHub
parent 674ea824c2
commit 3bbe859452
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 6 deletions

View file

@ -764,10 +764,10 @@ export type CapabilitiesType = {
senderKey: boolean;
};
export type CapabilitiesUploadType = {
announcementGroup: true;
'gv2-3': true;
'gv1-migration': true;
senderKey: true;
announcementGroup: boolean;
'gv2-3': boolean;
'gv1-migration': boolean;
senderKey: boolean;
};
type StickerPackManifestType = any;
@ -1494,7 +1494,7 @@ export function initialize({
announcementGroup: true,
'gv2-3': true,
'gv1-migration': true,
senderKey: true,
senderKey: false,
};
const { accessKey, uuid } = options;