Browse Source

fix retry pgp

Son NK 5 years ago
parent
commit
1dc2e9c54f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      app/pgp_utils.py

+ 1 - 0
app/pgp_utils.py

@@ -51,6 +51,7 @@ def encrypt_file(data: BytesIO, fingerprint: str) -> str:
             load_public_key(mailbox.pgp_public_key)
 
             LOG.d("retry to encrypt")
+            data.seek(0)
             r = gpg.encrypt_file(data, fingerprint, always_trust=True)
 
         if not r.ok: