Update poll receive feature flags

Co-authored-by: yash-signal <yash@signal.org>
This commit is contained in:
automated-signal
2025-11-05 14:40:52 -06:00
committed by GitHub
parent 30f09124f0
commit 72e960a3ba
2 changed files with 4 additions and 4 deletions

View File

@@ -39,8 +39,8 @@ const KnownConfigKeys = [
'desktop.libsignalNet.chatPermessageDeflate',
'desktop.libsignalNet.chatPermessageDeflate.prod',
'desktop.pollReceive.alpha',
'desktop.pollReceive.beta',
'desktop.pollReceive.prod',
'desktop.pollReceive.beta1',
'desktop.pollReceive.prod1',
'desktop.pollSend.alpha',
'desktop.pollSend.beta',
'desktop.pollSend.prod',

View File

@@ -101,10 +101,10 @@ export function isPollReceiveEnabled(): boolean {
if (version != null) {
if (isProduction(version)) {
return RemoteConfig.isEnabled('desktop.pollReceive.prod');
return RemoteConfig.isEnabled('desktop.pollReceive.prod1');
}
if (isBeta(version)) {
return RemoteConfig.isEnabled('desktop.pollReceive.beta');
return RemoteConfig.isEnabled('desktop.pollReceive.beta1');
}
if (isAlpha(version)) {
return RemoteConfig.isEnabled('desktop.pollReceive.alpha');