Ignore mismatch state if FREE tier user has GPB sub.

Co-authored-by: jeffrey-signal <jeffrey@signal.org>
This commit is contained in:
Alex Hart
2025-09-24 12:30:06 -03:00
committed by Jeffrey Starke
parent 9777aa411c
commit 04923487c4
2 changed files with 11 additions and 0 deletions

View File

@@ -300,6 +300,11 @@ class BackupStateObserver(
SignalStore.backup.subscriptionStateMismatchDetected = false
}
SignalStore.backup.backupTier == MessageBackupTier.FREE -> {
Log.i(TAG, "[getNetworkBackupState][subscriptionMismatchDetected] User is on the free tier, has no signal subscription, and has a google play subscription. Clearing mismatch.")
SignalStore.backup.subscriptionStateMismatchDetected = false
}
else -> {
Log.w(TAG, "[getNetworkBackupState][subscriptionMismatchDetected] Hit unexpected subscription mismatch state: signal:false, google:true")
return BackupState.NotFound