We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This happens when you are connected with Wallet Connect.
Reproduction steps:
In Desktop, we have different behaviour from Web. Even if you have a saved session. You must press a button. So basically, we disabled the auto-login.
I suspect that I added this bug when I implemented the desktop launcher.
And the problem could be in this code:
async function initLogin(kernel: KernelResult) { if (!isElectron()) { const provider = await restoreConnection() if (provider && provider.account) { const providerChainId = await getChainIdFromProvider(provider.provider) // BUG OF decentraland-connect: // provider.chainId DOES NOT reflect the selected chain in the real provider const storedSession = await kernel.hasStoredSession(provider.account, providerChainId /* provider.chainId */) if (storedSession) { track('automatic_relogin', { provider_type: provider.providerType }) authenticate(provider.providerType).catch(defaultWebsiteErrorTracker) } } } }
Permalink:
explorer-website/src/kernel-loader/index.ts
Line 297 in cf5a3da
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This happens when you are connected with Wallet Connect.
Reproduction steps:
In Desktop, we have different behaviour from Web. Even if you have a saved session. You must press a button. So basically, we disabled the auto-login.
I suspect that I added this bug when I implemented the desktop launcher.
And the problem could be in this code:
Permalink:
explorer-website/src/kernel-loader/index.ts
Line 297 in cf5a3da
The text was updated successfully, but these errors were encountered: