|
|
@ -985,13 +985,19 @@ function getThemeFromMainWindow() {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function askForMicrophoneAccess() {
|
|
|
|
function askForMediaAccess() {
|
|
|
|
const status = systemPreferences.getMediaAccessStatus('microphone');
|
|
|
|
// Microphone part
|
|
|
|
|
|
|
|
let status = systemPreferences.getMediaAccessStatus('microphone');
|
|
|
|
if (status !== 'granted') {
|
|
|
|
if (status !== 'granted') {
|
|
|
|
systemPreferences.askForMediaAccess('microphone');
|
|
|
|
systemPreferences.askForMediaAccess('microphone');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Camera part
|
|
|
|
|
|
|
|
status = systemPreferences.getMediaAccessStatus('camera');
|
|
|
|
|
|
|
|
if (status !== 'granted') {
|
|
|
|
|
|
|
|
systemPreferences.askForMediaAccess('camera');
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ipc.on('microphone-access', () => {
|
|
|
|
ipc.on('media-access', () => {
|
|
|
|
askForMicrophoneAccess();
|
|
|
|
askForMediaAccess();
|
|
|
|
});
|
|
|
|
});
|
|
|
|