Files
Desktop/ts/util/callingPermissions.dom.ts
Fedor Indutny 44076ece79 Rename files
2025-10-16 23:45:44 -07:00

14 lines
414 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 (await window.IPC.getMediaCameraPermissions()) ?? false;
}
return true;
}