From 16dea3af1bb87efd6a06e3a6c5347ac5ae4cb972 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 21 Oct 2020 17:09:18 +0200 Subject: [PATCH] Do not log the ssh public key Not necessary --- lib/settings.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/settings.dart b/lib/settings.dart index 1ea56d05..555fe3cd 100644 --- a/lib/settings.dart +++ b/lib/settings.dart @@ -309,7 +309,7 @@ class Settings extends ChangeNotifier { 'bottomMenuBar': bottomMenuBar.toString(), 'storeInternally': storeInternally.toString(), 'storageLocation': storageLocation, - 'sshPublicKey': sshPublicKey, + 'sshPublicKey': sshPublicKey.isNotEmpty.toString(), }; }