11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
|
export async function requestCameraPermissions(): Promise<boolean> {
|
||
|
if (!(await window.getMediaCameraPermissions())) {
|
||
|
await window.showCallingPermissionsPopup(true);
|
||
|
|
||
|
// Check the setting again (from the source of truth).
|
||
|
return window.getMediaCameraPermissions();
|
||
|
}
|
||
|
|
||
|
return true;
|
||
|
}
|