fix(camera-recorder): stop camera on navigation (#782)
* Stopping camera when user switches to another page * Missing ;
This commit is contained in:
		
							parent
							
								
									7a70dbbe0c
								
							
						
					
					
						commit
						80e46c9292
					
				| @ -28,6 +28,7 @@ const permissionCannotBePrompted = ref(false); | |||||||
| const { | const { | ||||||
|   stream, |   stream, | ||||||
|   start, |   start, | ||||||
|  |   stop, | ||||||
|   enabled: isMediaStreamAvailable, |   enabled: isMediaStreamAvailable, | ||||||
| } = useUserMedia({ | } = useUserMedia({ | ||||||
|   constraints: computed(() => ({ |   constraints: computed(() => ({ | ||||||
| @ -83,6 +84,8 @@ watchEffect(() => { | |||||||
|   } |   } | ||||||
| }); | }); | ||||||
| 
 | 
 | ||||||
|  | onBeforeUnmount(() => stop()); | ||||||
|  | 
 | ||||||
| async function requestPermissions() { | async function requestPermissions() { | ||||||
|   try { |   try { | ||||||
|     await ensurePermissions(); |     await ensurePermissions(); | ||||||
|  | |||||||
		Loading…
	
		Reference in New Issue
	
	Block a user