aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-02-01 18:16:48 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-02-01 18:16:48 +0900
commitffb8233d1b6ac54e37391e1949697ba8f6828f47 (patch)
tree968fef3a4855e78e7c9604f3c4eb225e021b0fe3
parentb7fce41348f2c8449e84c3078b67dad7cf78ace5 (diff)
downloadlibquotient-ffb8233d1b6ac54e37391e1949697ba8f6828f47.tar.gz
libquotient-ffb8233d1b6ac54e37391e1949697ba8f6828f47.zip
On Windows, make sure the downloaded file has a proper extension
Closes #287.
-rw-r--r--room.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/room.cpp b/room.cpp
index 0e4b1385..51da747e 100644
--- a/room.cpp
+++ b/room.cpp
@@ -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))
{