mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-10-31 08:11:16 +01:00 
			
		
		
		
	make electron send email validation URLs with a nextlink of riot.im rather than file:///
This commit is contained in:
		
							parent
							
								
									cbf105f2a0
								
							
						
					
					
						commit
						078493912c
					
				| @ -136,11 +136,20 @@ var onNewScreen = function(screen) { | |||||||
| // click back to the client having registered.
 | // click back to the client having registered.
 | ||||||
| // It's up to us to recognise if we're loaded with
 | // It's up to us to recognise if we're loaded with
 | ||||||
| // this URL and tell MatrixClient to resume registration.
 | // this URL and tell MatrixClient to resume registration.
 | ||||||
|  | //
 | ||||||
|  | // If we're in electron, we should never pass through a file:// URL otherwise
 | ||||||
|  | // the identity server will try to 302 the browser to it, which breaks horribly.
 | ||||||
|  | // so in that instance, hardcode to use riot.im/app for now instead.
 | ||||||
| var makeRegistrationUrl = function() { | var makeRegistrationUrl = function() { | ||||||
|     return window.location.protocol + '//' + |     if (window.location.protocol === "file:") { | ||||||
|            window.location.host + |         return 'https://riot.im/app/#/register'; | ||||||
|            window.location.pathname + |     } | ||||||
|            '#/register'; |     else { | ||||||
|  |         return window.location.protocol + '//' + | ||||||
|  |                window.location.host + | ||||||
|  |                window.location.pathname + | ||||||
|  |                '#/register'; | ||||||
|  |     } | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| window.addEventListener('hashchange', onHashChange); | window.addEventListener('hashchange', onHashChange); | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user