Updated on 2026-08-14
This commit is contained in:
parent
437f9a0f0d
commit
76841e8f62
2 changed files with 4 additions and 4 deletions
|
|
@ -494,6 +494,6 @@ internal class DefaultLegacyWalletConnectRepository(
|
||||||
|
|
||||||
private companion object {
|
private companion object {
|
||||||
|
|
||||||
val unsupportedDApps = listOf("dYdX", "dYdX v4", "Apex Pro")
|
val unsupportedDApps = listOf("dYdX", "dYdX v4", "Apex Pro", "The Sandbox")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -45,13 +45,13 @@ internal class QrScanningClickIntentsImplementor @Inject constructor(
|
||||||
|
|
||||||
override fun onQrScanned(qrCode: String) {
|
override fun onQrScanned(qrCode: String) {
|
||||||
if (qrCode.isNotBlank()) {
|
if (qrCode.isNotBlank()) {
|
||||||
|
viewModelScope.launch(dispatcher.mainImmediate) {
|
||||||
|
emitQrScannedEventUseCase.invoke(source, qrCode)
|
||||||
|
}
|
||||||
if (!isScanned) {
|
if (!isScanned) {
|
||||||
router.popBackStack()
|
router.popBackStack()
|
||||||
isScanned = true
|
isScanned = true
|
||||||
}
|
}
|
||||||
viewModelScope.launch(dispatcher.main) {
|
|
||||||
emitQrScannedEventUseCase.invoke(source, qrCode)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue