diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-01 18:16:48 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-01 18:16:48 +0900 |
commit | ffb8233d1b6ac54e37391e1949697ba8f6828f47 (patch) | |
tree | 968fef3a4855e78e7c9604f3c4eb225e021b0fe3 | |
parent | b7fce41348f2c8449e84c3078b67dad7cf78ace5 (diff) | |
download | libquotient-ffb8233d1b6ac54e37391e1949697ba8f6828f47.tar.gz libquotient-ffb8233d1b6ac54e37391e1949697ba8f6828f47.zip |
On Windows, make sure the downloaded file has a proper extension
Closes #287.
-rw-r--r-- | room.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1005,6 +1005,14 @@ void Room::downloadFile(const QString& eventId, const QUrl& localFilename) (safeTempPrefix + fileInfo->originalName) : !event->plainBody().isEmpty() ? (safeTempPrefix + event->plainBody()) : (safeTempPrefix + fileInfo->mimeType.preferredSuffix()); + if (QSysInfo::productType() == "windows") + { + const auto& suffixes = fileInfo->mimeType.suffixes(); + if (!suffixes.isEmpty() && + std::none_of(suffixes.begin(), suffixes.end(), + [fileName] (const QString& s) { return fileName.endsWith(s); })) + fileName += '.' + fileInfo->mimeType.preferredSuffix(); + } auto job = connection()->downloadFile(fileInfo->url, fileName); if (isJobRunning(job)) { |