diff --git a/app-common/src/main/java/im/angry/openeuicc/core/EuiccChannelImpl.kt b/app-common/src/main/java/im/angry/openeuicc/core/EuiccChannelImpl.kt index 2f739e1..eaec522 100644 --- a/app-common/src/main/java/im/angry/openeuicc/core/EuiccChannelImpl.kt +++ b/app-common/src/main/java/im/angry/openeuicc/core/EuiccChannelImpl.kt @@ -1,7 +1,6 @@ package im.angry.openeuicc.core import im.angry.openeuicc.util.UiccPortInfoCompat -import im.angry.openeuicc.util.decodeHex import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.first import kotlinx.coroutines.runBlocking @@ -18,7 +17,7 @@ class EuiccChannelImpl( override val isdrAid: ByteArray, verboseLoggingFlow: Flow, ignoreTLSCertificateFlow: Flow, - es10xMss: Flow, + es10xMssFlow: Flow, ) : EuiccChannel { override val slotId = port.card.physicalSlotIndex override val logicalSlotId = port.logicalSlotIndex @@ -30,7 +29,7 @@ class EuiccChannelImpl( apduInterface, HttpInterfaceImpl(verboseLoggingFlow, ignoreTLSCertificateFlow), ).also { - it.setEs10xMss(runBlocking { es10xMss.first().toByte() }) + it.setEs10xMss(runBlocking { es10xMssFlow.first().toByte() }) } override val atr: ByteArray?