We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fafa69 commit 035ceb5Copy full SHA for 035ceb5
src/libsync/foldermetadata.cpp
@@ -792,7 +792,8 @@ bool FolderMetadata::parseFileDropPart(const QJsonDocument &doc)
792
if (userParsedId == _account->davUser()) {
793
const auto fileDropEntryUser = UserWithFileDropEntryAccess{
794
userParsedId,
795
- decryptDataWithPrivateKey(QByteArray::fromBase64(userParsed.value(usersEncryptedFiledropKey).toByteArray()))};
+ QByteArray::fromBase64(decryptDataWithPrivateKey(userParsed.value(usersEncryptedFiledropKey).toByteArray()))
796
+ };
797
if (!fileDropEntryUser.isValid()) {
798
qCWarning(lcCseMetadata()) << "Could not parse filedrop data. encryptedFiledropKey decryption failed";
799
_account->reportClientStatus(OCC::ClientStatusReportingStatus::E2EeError_GeneralError);
0 commit comments