mirror of
https://github.com/simple-login/app.git
synced 2025-02-22 23:02:55 +08:00
fix load_pgp_public_keys()
This commit is contained in:
parent
0585ba97ee
commit
0b83835065
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ def load_pgp_public_keys():
|
|||
mailbox.pgp_finger_print = fingerprint
|
||||
db.session.commit()
|
||||
|
||||
for contact in Contact.query.filter(Contact.pgp_public_key.insnot(None)).all():
|
||||
for contact in Contact.query.filter(Contact.pgp_public_key.isnot(None)).all():
|
||||
LOG.d("Load PGP key for %s", contact)
|
||||
fingerprint = load_public_key(contact.pgp_public_key)
|
||||
|
||||
|
|
Loading…
Reference in a new issue