Compare commits

...

2 Commits

Author SHA1 Message Date
Greyson Parrelli
23a4393e77 Bump version to 7.20.2 2024-10-17 10:23:30 -04:00
Greyson Parrelli
8498b2ce5c Fix SVR fallback list. 2024-10-17 09:57:06 -04:00
2 changed files with 6 additions and 4 deletions

View File

@@ -22,8 +22,8 @@ plugins {
apply(from = "static-ips.gradle.kts")
val canonicalVersionCode = 1470
val canonicalVersionName = "7.20.1"
val currentHotfixVersion = 0
val canonicalVersionName = "7.20.2"
val currentHotfixVersion = 1
val maxHotfixVersions = 100
val keystores: Map<String, Properties?> = mapOf("debug" to loadKeystoreProperties("keystore.debug.properties"))

View File

@@ -100,8 +100,10 @@ object SvrRepository {
svr2 to { restoreMasterKeyPreRegistrationFromV2(svr2, credentials.svr2, userPin) }
)
} else {
listOf(svr2 to { restoreMasterKeyPreRegistrationFromV2(svr2, credentials.svr2, userPin) })
listOf(svr2Legacy to { restoreMasterKeyPreRegistrationFromV2(svr2Legacy, credentials.svr2, userPin) })
listOf(
svr2 to { restoreMasterKeyPreRegistrationFromV2(svr2, credentials.svr2, userPin) },
svr2Legacy to { restoreMasterKeyPreRegistrationFromV2(svr2Legacy, credentials.svr2, userPin) }
)
}
for ((implementation, operation) in operations) {