Remove duplicated

This commit is contained in:
Nicola Benaglia 2025-05-24 14:18:40 +02:00
parent c9a6783683
commit 7deb2501e2

View File

@ -143,16 +143,13 @@ export const encryptAndPublishSymmetricKeyGroupChat = async ({
if (encryptedData) { if (encryptedData) {
const registeredName = await getNameInfo(); const registeredName = await getNameInfo();
const data = await publishData({ const data = await publishData({
registeredName,
data: encryptedData, data: encryptedData,
service: 'DOCUMENT_PRIVATE',
identifier: `symmetric-qchat-group-${groupId}`,
uploadType: 'base64',
file: encryptedData, file: encryptedData,
service: 'DOCUMENT_PRIVATE',
identifier: `symmetric-qchat-group-${groupId}`, identifier: `symmetric-qchat-group-${groupId}`,
uploadType: 'file',
isBase64: true, isBase64: true,
registeredName,
service: 'DOCUMENT_PRIVATE',
uploadType: 'base64',
withFee: true, withFee: true,
}); });
return { return {