Fix de related crash and bug.

This commit is contained in:
Cody Henthorne
2025-09-23 09:28:46 -04:00
committed by Jeffrey Starke
parent 8b2f58e0e7
commit 6e867d678c
2 changed files with 2 additions and 1 deletions

View File

@@ -1899,7 +1899,7 @@ object BackupRepository {
Log.d(TAG, "Accessing price via billing api.")
AppDependencies.billingApi.queryProduct()?.price
} else {
FiatMoney(BigDecimal.ZERO, Currency.getInstance(Locale.getDefault()))
FiatMoney(BigDecimal.ZERO, SignalStore.inAppPayments.getRecurringDonationCurrency())
}
if (productPrice == null) {

View File

@@ -67,6 +67,7 @@ fun MessageBackupsKeyEducationScreen(
Text(
text = stringResource(R.string.MessageBackupsKeyEducationScreen__your_backup_key),
textAlign = TextAlign.Center,
style = MaterialTheme.typography.headlineMedium,
modifier = Modifier.padding(top = 16.dp)
)