diff options
author | Patrick Brunschwig <[email protected]> | 2021-06-19 17:51:29 +0200 |
---|---|---|
committer | Patrick Brunschwig <[email protected]> | 2021-06-19 17:52:31 +0200 |
commit | b1ca3748d3cffa2385943a87d6ff1b7845ca43ef (patch) | |
tree | df963ddc4b524ca1f838bcb6279828af28c37483 | |
parent | a501dff4118805ca682a0773d5b169aae59d1444 (diff) | |
download | enigmail-b1ca3748d3cffa2385943a87d6ff1b7845ca43ef.tar.gz enigmail-b1ca3748d3cffa2385943a87d6ff1b7845ca43ef.tar.bz2 enigmail-b1ca3748d3cffa2385943a87d6ff1b7845ca43ef.zip |
fixed signing keys (use fpr instead of fprFormatted)
-rw-r--r-- | ui/content/enigmailSignKeyDlg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/content/enigmailSignKeyDlg.js b/ui/content/enigmailSignKeyDlg.js index df2d2d52..64c2fdac 100644 --- a/ui/content/enigmailSignKeyDlg.js +++ b/ui/content/enigmailSignKeyDlg.js @@ -49,7 +49,7 @@ function onLoad() { var menulist = document.getElementById("signWithKey"); for (key of keys) { - menulist.appendItem(key.userId + " - " + key.fprFormatted, key.fprFormatted); + menulist.appendItem(key.userId + " - " + key.fprFormatted, key.fpr); } if (menulist.selectedIndex == -1) { menulist.selectedIndex = 0; |