From b54e8018af092456ac69d906d9995dbfa00f245f Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 11 Nov 2020 13:44:24 +0100 Subject: [PATCH] Log if the private key is not empty in the settings It typically shouldn't be --- lib/settings.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/settings.dart b/lib/settings.dart index 44f1c34c..38eb6058 100644 --- a/lib/settings.dart +++ b/lib/settings.dart @@ -353,6 +353,7 @@ class Settings extends ChangeNotifier { 'storeInternally': storeInternally.toString(), 'storageLocation': storageLocation, 'sshPublicKey': sshPublicKey.isNotEmpty.toString(), + 'sshPrivateKey': sshPrivateKey.isNotEmpty.toString(), }; }