Merge pull request #435 from robintown/insecure-context
Produce a more informative error when running in an insecure context
This commit is contained in:
		
				commit
				
					
						94f16b986a
					
				
			
		
					 2 changed files with 9 additions and 1 deletions
				
			
		|  | @ -36,6 +36,14 @@ initRageshake(); | |||
| 
 | ||||
| console.info(`matrix-video-chat ${import.meta.env.VITE_APP_VERSION || "dev"}`); | ||||
| 
 | ||||
| if (!window.isSecureContext) { | ||||
|   throw new Error( | ||||
|     "This app cannot run in an insecure context. To fix this, access the app " + | ||||
|       "via a local loopback address, or serve it over HTTPS.\n" + | ||||
|       "https://developer.mozilla.org/en-US/docs/Web/Security/Secure_Contexts" | ||||
|   ); | ||||
| } | ||||
| 
 | ||||
| if (import.meta.env.VITE_CUSTOM_THEME) { | ||||
|   const style = document.documentElement.style; | ||||
|   style.setProperty("--accent", import.meta.env.VITE_THEME_ACCENT as string); | ||||
|  |  | |||
|  | @ -44,7 +44,7 @@ import { useShowInspector } from "../settings/useSetting"; | |||
| import { useModalTriggerState } from "../Modal"; | ||||
| import { useAudioContext } from "../video-grid/useMediaStream"; | ||||
| 
 | ||||
| const canScreenshare = "getDisplayMedia" in navigator.mediaDevices; | ||||
| const canScreenshare = "getDisplayMedia" in (navigator.mediaDevices ?? {}); | ||||
| // There is currently a bug in Safari our our code with cloning and sending MediaStreams | ||||
| // or with getUsermedia and getDisplaymedia being used within the same session. | ||||
| // For now we can disable screensharing in Safari. | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue