Skip to content

Commit d35c616

Browse files
authored
Merge pull request #5811 from EdgeApp/jon/fix/qr-scan-disabled-wallets
Fix deeplinking when deprecated assets exist
2 parents 7daa697 + ed7dd2f commit d35c616

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- fixed: `AirshipToast` font scaling
1111
- fixed: Swap provider selection modal scrolling on Android
1212
- fixed: `BuyCrypto` not auto-populating buy asset
13+
- fixed: Failure to handle deeplinking when deprecated assets (`keysOnlyMode`) exist in the account
1314

1415
## 4.37.0 (2025-10-21)
1516

src/actions/DeepLinkingActions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ async function handleLink(
293293
const { pluginId } = wallet.currencyInfo
294294
// Ignore disabled wallets:
295295
const { keysOnlyMode = false } = SPECIAL_CURRENCY_INFO[pluginId] ?? {}
296-
if (keysOnlyMode) return
296+
if (keysOnlyMode) continue
297297
const parsedUri = await wallet
298298
.parseUri(link.uri)
299299
.catch((_: unknown) => undefined)

0 commit comments

Comments
 (0)