Merge branch 'main' into main

This commit is contained in:
vincent 2023-11-30 10:05:08 +08:00 committed by GitHub
commit a096240c82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();