Update README.md: Fix error

I was seeing this error: 

```
index.js:29
            message: await openpgp.message.readArmored(encrypted),    // parse armored message
                           ^^^^^^^
```

And I think it's because the async was missing.
This commit is contained in:
Chris Cunningham 2019-01-15 20:51:30 -08:00 committed by GitHub
parent 1ec216a6b4
commit bd964334cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -184,7 +184,7 @@ const encryptDecryptFunction = async() => {
encrypted = ciphertext.data // '-----BEGIN PGP MESSAGE ... END PGP MESSAGE-----'
return encrypted
})
.then(encrypted => {
.then(async encrypted => {
const options = {
message: await openpgp.message.readArmored(encrypted), // parse armored message
publicKeys: (await openpgp.key.readArmored(pubkey)).keys, // for verification (optional)