diff options
author | Saturneric <[email protected]> | 2021-05-25 19:12:11 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-05-25 19:12:11 +0000 |
commit | 001db514d1b447892bfae71640bd58567cb7cbcf (patch) | |
tree | 4b990ed6966e1e33bb3888f254dc4a7812d1760a /src/gpg/Signature.cpp | |
parent | Streamline, expand and improve the interface of GpgContext. (diff) | |
download | GpgFrontend-001db514d1b447892bfae71640bd58567cb7cbcf.tar.gz GpgFrontend-001db514d1b447892bfae71640bd58567cb7cbcf.zip |
Fix some problems caused by negligence.
Basically complete the function of signing the key.
There are still problems with the refresh mechanism.
Signed-off-by: Saturneric <[email protected]>
Diffstat (limited to 'src/gpg/Signature.cpp')
-rw-r--r-- | src/gpg/Signature.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpg/Signature.cpp b/src/gpg/Signature.cpp index f9762501..8e82c507 100644 --- a/src/gpg/Signature.cpp +++ b/src/gpg/Signature.cpp @@ -27,7 +27,7 @@ Signature::Signature(gpgme_key_sig_t key_sig) : revoked(key_sig->revoked), expired(key_sig->expired), invalid(key_sig->invalid), exportable(key_sig->exportable), pubkey_algo(gpgme_pubkey_algo_name(key_sig->pubkey_algo)), - name(key_sig->name), email(key_sig->email), comment(key_sig->comment), + uid(key_sig->uid), name(key_sig->name), email(key_sig->email), comment(key_sig->comment), create_time(QDateTime::fromTime_t(key_sig->timestamp)), expire_time(QDateTime::fromTime_t(key_sig->expires)){ } |