signal-desktop/ts/util/callingPermissions.ts
2023-01-12 16:24:59 -08:00

13 lines
397 B
TypeScript

// Copyright 2020 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
export async function requestCameraPermissions(): Promise<boolean> {
if (!(await window.IPC.getMediaCameraPermissions())) {
await window.IPC.showPermissionsPopup(true, true);
// Check the setting again (from the source of truth).
return window.IPC.getMediaCameraPermissions();
}
return true;
}