4
1
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-02-11 17:55:51 +00:00

added to multiple

This commit is contained in:
Phillip 2023-05-13 03:33:18 +03:00
parent cb9d5e44a9
commit adc8ba42a0

View File

@ -1007,9 +1007,9 @@ class WebBrowser extends LitElement {
response = JSON.stringify(data);
break
}
if (data.encrypt && !data.recipientPublicKey) {
if (data.encrypt && (!data.publicKeys || (Array.isArray(data.publicKeys) && data.publicKeys.length === 0))) {
let data = {};
data['error'] = "Encrypting data requires the recipient's public key";
data['error'] = "Encrypting data requires public keys";
response = JSON.stringify(data);
break
}
@ -1068,13 +1068,14 @@ class WebBrowser extends LitElement {
throw new Error("Only encrypted data can go into private services")
}
if (data.encrypt) {
try {
const encryptDataResponse = encryptData({
data64, recipientPublicKey: data.recipientPublicKey
const encryptDataResponse = encryptDataGroup({
data64, publicKeys: data.publicKeys
})
if (encryptDataResponse.encryptedData) {
data64 = encryptDataResponse.encryptedData
if (encryptDataResponse) {
data64 = encryptDataResponse
}
} catch (error) {