[GH-2857] Allow only macOS to call setSecureKeyboardEntryEnabled (#2860)

This commit is contained in:
Devin Binnie 2023-09-28 11:07:58 -04:00 committed by GitHub
parent f4cf612e21
commit 2a88175b09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -149,6 +149,10 @@ export function handlePingDomain(event: IpcMainInvokeEvent, url: string): Promis
}
export function handleToggleSecureInput(event: IpcMainEvent, secureInput: boolean) {
if (process.platform !== 'darwin') {
return;
}
// Enforce macOS to restrict processes from reading the keyboard input when in a password field
log.debug('handleToggleSecureInput', secureInput);
app.setSecureKeyboardEntryEnabled(secureInput);