From 46e4ec3183589fd49f8305c19b8b3cfede0fe9ec Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Fri, 20 May 2016 16:31:47 +0200 Subject: [PATCH] Checksums: Use SHA1 like in >=2.2 --- src/libsync/propagateupload.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/libsync/propagateupload.cpp b/src/libsync/propagateupload.cpp index 92439b6a46..6ec25ab38e 100644 --- a/src/libsync/propagateupload.cpp +++ b/src/libsync/propagateupload.cpp @@ -222,8 +222,9 @@ void PropagateUploadFileQNAM::slotComputeContentChecksum() QByteArray contentChecksumType; // We currently only do content checksums for the particular .eml case // This should be done more generally in the future! - if (filePath.endsWith(QLatin1String(".eml"), Qt::CaseInsensitive)) { - contentChecksumType = "MD5"; + if (filePath.endsWith(QLatin1String(".eml"), Qt::CaseInsensitive) + || filePath.endsWith(QLatin1String(".msg"), Qt::CaseInsensitive)) { + contentChecksumType = "SHA1"; } // Maybe the discovery already computed the checksum?