diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-12-12 19:34:57 +0300 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-12-12 19:34:57 +0300 |
commit | eabed200f5fe09a37942a52387c0d3f25070b0c3 (patch) | |
tree | 0f5d66d07e979ab61ce44e71cab799671d481e85 | |
parent | 1ffa6b96adeba8c1a00a0a32112c8b0aaeb2350e (diff) | |
download | libquotient-eabed200f5fe09a37942a52387c0d3f25070b0c3.tar.gz libquotient-eabed200f5fe09a37942a52387c0d3f25070b0c3.zip |
Room::fileNameToDownload(): fix a typo in a check on Windows
As a result of the typo, the extension was never attached to returned
file names if there was none originally.
-rw-r--r-- | lib/room.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 60b9a684..eefccdb5 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -1037,7 +1037,7 @@ QString Room::Private::fileNameToDownload(const RoomMessageEvent* event) const if (QSysInfo::productType() == "windows") { if (const auto& suffixes = fileInfo->mimeType.suffixes(); - suffixes.isEmpty() + !suffixes.isEmpty() && std::none_of(suffixes.begin(), suffixes.end(), [&fileName](const QString& s) { return fileName.endsWith(s); |