Updated on 2026-08-14

This commit is contained in:
Tangem 2023-08-09 17:40:52 +03:00
parent 3e1f52942c
commit 282cc27cb4
7 changed files with 10 additions and 15 deletions

View file

@ -51,7 +51,7 @@ class ScanProductTask(
}
val cardDto = CardDTO(card)
val error = getErrorIfExcludedCard(cardDto, card)
val error = getErrorIfExcludedCard(cardDto)
if (error != null) {
callback(CompletionResult.Failure(error))
return
@ -81,11 +81,9 @@ class ScanProductTask(
}
}
private fun getErrorIfExcludedCard(cardDto: CardDTO, card: Card): TangemError? {
private fun getErrorIfExcludedCard(cardDto: CardDTO): TangemError? {
if (cardDto.isExcluded) return TapSdkError.CardForDifferentApp
if (cardDto.isNotSupportedInThatRelease) return TapSdkError.CardNotSupportedByRelease
// todo check isImported to prevent using old app with imported wallet, remove before wallet 2.0 enabled ([REDACTED_TASK_KEY])
if (card.wallets.any { it.isImported }) return TapSdkError.CardNotSupportedByRelease
return null
}
}