Skip to content

Commit

Permalink
Merge branch '1.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
lnjX committed Oct 5, 2023
2 parents e5b9414 + b5691ff commit 5067efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/QXmppEncryptedFileSharingProvider.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ auto QXmppEncryptedFileSharingProvider::downloadFile(const std::any &source,
qFatal("QXmppEncryptedFileSharingProvider::downloadFile can only handle QXmppEncryptedFileSource sources");
}

auto output = std::make_unique<Encryption::DecryptionDevice>(std::move(target), encryptedSource.cipher(), encryptedSource.iv(), encryptedSource.key());
auto output = std::make_unique<Encryption::DecryptionDevice>(std::move(target), encryptedSource.cipher(), encryptedSource.key(), encryptedSource.iv());

// find provider for source of encrypted file
std::any httpSource = encryptedSource.httpSources().front();
Expand Down

0 comments on commit 5067efe

Please sign in to comment.