We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac81080 commit 894e31fCopy full SHA for 894e31f
src/vector/index.js
@@ -251,7 +251,9 @@ async function loadApp() {
251
252
// don't try to redirect to the native apps if we're
253
// verifying a 3pid (but after we've loaded the config)
254
- const preventRedirect = Boolean(fragparts.params.client_secret);
+ // or if the user is following a deep link
255
+ // (https://github.com/vector-im/riot-web/issues/7378)
256
+ const preventRedirect = fragparts.params.client_secret || fragparts.location.length > 0;
257
258
if (!preventRedirect) {
259
const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
0 commit comments