Updated on 2026-08-14

This commit is contained in:
Tangem 2021-11-19 23:24:54 +03:00
parent 2cca42acc3
commit 27d69f3acb
3 changed files with 8 additions and 0 deletions

View file

@ -24,6 +24,7 @@ import com.tangem.tap.domain.TapSdkError
import com.tangem.tap.domain.TapWorkarounds
import com.tangem.tap.domain.TapWorkarounds.getTangemNoteBlockchain
import com.tangem.tap.domain.TapWorkarounds.isExcluded
import com.tangem.tap.domain.TapWorkarounds.isNotSupportedInThatRelease
import com.tangem.tap.domain.extensions.getSingleWallet
import com.tangem.tap.domain.twins.TwinsHelper
@ -97,6 +98,7 @@ class ScanProductTask(val card: Card? = null) : CardSessionRunnable<ScanResponse
private fun getErrorIfExcludedCard(card: Card): TangemError? {
if (card.isExcluded()) return TapSdkError.CardForDifferentApp
if (card.isNotSupportedInThatRelease()) return TapSdkError.CardNotSupportedByRelease
return null
}