From b09d1d46c9170e8bf3689bed0ec83649f2885dd0 Mon Sep 17 00:00:00 2001 From: leo Date: Thu, 12 Sep 2024 11:03:56 +0800 Subject: [PATCH] fix: `openpgp` typo (#465) --- src/Views/Preference.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Preference.axaml.cs b/src/Views/Preference.axaml.cs index 141c1baf..e76fce2f 100644 --- a/src/Views/Preference.axaml.cs +++ b/src/Views/Preference.axaml.cs @@ -134,7 +134,7 @@ namespace SourceGit.Views SetIfChanged(config, "core.autocrlf", CRLFMode != null ? CRLFMode.Value : null, null); SetIfChanged(config, "commit.gpgsign", EnableGPGCommitSigning ? "true" : "false", "false"); SetIfChanged(config, "tag.gpgsign", EnableGPGTagSigning ? "true" : "false", "false"); - SetIfChanged(config, "gpg.format", GPGFormat.Value, "opengpg"); + SetIfChanged(config, "gpg.format", GPGFormat.Value, "openpgp"); if (!GPGFormat.Value.Equals("ssh", StringComparison.Ordinal)) SetIfChanged(config, $"gpg.{GPGFormat.Value}.program", GPGExecutableFile, "");