| 142 | */ |
| 143 | async setRecipientData(recipients) { |
| 144 | const toRecipient = email => { |
| 145 | const key = findKeyByEmail(keys, email); |
| 146 | return {email, key, fingerprint: key?.fingerprint, checkServer: !key}; |
| 147 | }; |
| 148 | let to = []; |
| 149 | let cc = []; |
| 150 | const keys = await getKeyData({keyringId: this.keyringId}); |
nothing calls this directly
no test coverage detected