diff --git a/ts/RemoteConfig.ts b/ts/RemoteConfig.ts index c5bba7fff2..71fd292ed1 100644 --- a/ts/RemoteConfig.ts +++ b/ts/RemoteConfig.ts @@ -16,7 +16,7 @@ import { getCountryCode } from './types/PhoneNumber'; import { parseRemoteClientExpiration } from './util/parseRemoteClientExpiration'; export type ConfigKeyType = - | 'desktop.calling.ringrtcAdmFull.2' + | 'desktop.calling.ringrtcAdmFull.3' | 'desktop.calling.ringrtcAdmInternal' | 'desktop.calling.ringrtcAdmPreStable' | 'desktop.clientExpiration' diff --git a/ts/util/ringrtc/ringrtcAdm.ts b/ts/util/ringrtc/ringrtcAdm.ts index 14d554074b..593733a65a 100644 --- a/ts/util/ringrtc/ringrtcAdm.ts +++ b/ts/util/ringrtc/ringrtcAdm.ts @@ -12,7 +12,7 @@ export function getUseRingrtcAdm(): boolean { if (!RemoteConfig.isEnabled('desktop.internalUser')) { if (isProduction(window.getVersion())) { - return RemoteConfig.isEnabled('desktop.calling.ringrtcAdmFull.2'); + return RemoteConfig.isEnabled('desktop.calling.ringrtcAdmFull.3'); } return RemoteConfig.isEnabled('desktop.calling.ringrtcAdmPreStable'); }