mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 06:55:59 +03:00
Fix matching encrypted file for download
This commit is contained in:
parent
d93f7269b8
commit
a7a8de8787
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ void PropagateDownloadEncrypted::checkFolderEncryptedMetadata(const QJsonDocumen
|
|||
|
||||
for (const EncryptedFile &file : files) {
|
||||
qCDebug(lcPropagateDownloadEncrypted) << "file" << filename << file.encryptedFilename << file.originalFilename << file.encryptionKey;
|
||||
if (filename == file.encryptedFilename) {
|
||||
if (filename == file.originalFilename) {
|
||||
_encryptedInfo = file;
|
||||
qCDebug(lcPropagateDownloadEncrypted) << "Found matching encrypted metadata for file, starting download";
|
||||
emit folderStatusEncrypted();
|
||||
|
|
Loading…
Reference in a new issue