Append 'password-store=basic' switch on startup

Co-authored-by: Scott Nonnenberg <scott@signal.org>
This commit is contained in:
automated-signal 2022-05-27 09:40:29 -07:00 committed by GitHub
parent a79b1949e2
commit 350f9019c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -1466,6 +1466,9 @@ function getAppLocale(): string {
// Signal doesn't really use media keys so we set this switch here to unblock
// them so that other apps can use them if they need to.
app.commandLine.appendSwitch('disable-features', 'HardwareMediaKeyHandling');
if (OS.isLinux()) {
app.commandLine.appendSwitch('password-store', 'basic');
}
// This method will be called when Electron has finished
// initialization and is ready to create browser windows.