mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 02:02:14 +01:00 
			
		
		
		
	Merge pull request #7415 from vector-im/dbkr/mobile_guide_deep_link
Don't show mobile guide if deep linking
This commit is contained in:
		
						commit
						4e4906605b
					
				@ -251,7 +251,9 @@ async function loadApp() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    // don't try to redirect to the native apps if we're
 | 
					    // don't try to redirect to the native apps if we're
 | 
				
			||||||
    // verifying a 3pid (but after we've loaded the config)
 | 
					    // verifying a 3pid (but after we've loaded the config)
 | 
				
			||||||
    const preventRedirect = Boolean(fragparts.params.client_secret);
 | 
					    // or if the user is following a deep link
 | 
				
			||||||
 | 
					    // (https://github.com/vector-im/riot-web/issues/7378)
 | 
				
			||||||
 | 
					    const preventRedirect = fragparts.params.client_secret || fragparts.location.length > 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!preventRedirect) {
 | 
					    if (!preventRedirect) {
 | 
				
			||||||
        const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
 | 
					        const isIos = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user