GODT-1451: Do not check for gnome keyring to allow other implementations of secret-service API. Thanks to @remgodow.

This commit is contained in:
Jakub
2022-01-10 16:45:07 +01:00
committed by Jakub Cuth
parent 63379001e3
commit c920c53243
4 changed files with 13 additions and 15 deletions

View File

@ -101,10 +101,10 @@ func (f *frontendCLI) notifyNeedUpgrade() {
f.Println("Please download and install the newest version of application from", version.LandingPage)
}
func (f *frontendCLI) notifyCredentialsError() { // nolint[unused]
func (f *frontendCLI) notifyCredentialsError() {
// Print in 80-column width.
f.Println("ProtonMail Bridge is not able to detect a supported password manager")
f.Println("(pass, gnome-keyring). Please install and set up a supported password manager")
f.Println("(secret-service or pass). Please install and set up a supported password manager")
f.Println("and restart the application.")
}