diff --git a/drongo b/drongo index d0afa098..6868b026 160000 --- a/drongo +++ b/drongo @@ -1 +1 @@ -Subproject commit d0afa0987021284f11c45a51ffccbf7cb6d13ca2 +Subproject commit 6868b026fbc1c5093bbad7db32b14e00c78717f2 diff --git a/src/main/java/com/sparrowwallet/sparrow/control/DownloadVerifierDialog.java b/src/main/java/com/sparrowwallet/sparrow/control/DownloadVerifierDialog.java index 00cc4cba..b0865121 100644 --- a/src/main/java/com/sparrowwallet/sparrow/control/DownloadVerifierDialog.java +++ b/src/main/java/com/sparrowwallet/sparrow/control/DownloadVerifierDialog.java @@ -1,6 +1,7 @@ package com.sparrowwallet.sparrow.control; import com.sparrowwallet.drongo.Utils; +import com.sparrowwallet.drongo.pgp.PGPKeySource; import com.sparrowwallet.drongo.pgp.PGPUtils; import com.sparrowwallet.drongo.pgp.PGPVerificationException; import com.sparrowwallet.drongo.pgp.PGPVerificationResult; @@ -283,7 +284,7 @@ public class DownloadVerifierDialog extends Dialog { signedBy.setText(message); signedBy.setGraphic(result.expired() ? GlyphUtils.getWarningGlyph() : GlyphUtils.getSuccessGlyph()); - if(!result.expired() && !result.userProvidedKey()) { + if(!result.expired() && result.keySource() != PGPKeySource.USER) { publicKeyDisabled.set(true); }