aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2022-08-11 07:33:47 +0200
committerGitHub <noreply@github.com>2022-08-11 07:33:47 +0200
commit6308bff3336ca7680eee54d9bd125f780fa9f033 (patch)
tree922544b1df2e12d41886e8251de4e21bb87adb29
parent3214feeb031fa231c7c42c21c53410302966e32e (diff)
parent740e7a8c9fb4140c5eccd35bf4c78925754736db (diff)
downloadlibquotient-6308bff3336ca7680eee54d9bd125f780fa9f033.tar.gz
libquotient-6308bff3336ca7680eee54d9bd125f780fa9f033.zip
Merge #564: Emit Room::newFileTransfer when downloading a file
-rw-r--r--lib/room.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/room.cpp b/lib/room.cpp
index 7fd41a4f..c6fbb353 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -2551,6 +2551,7 @@ void Room::downloadFile(const QString& eventId, const QUrl& localFilename)
connect(job, &BaseJob::failure, this,
std::bind(&Private::failedTransfer, d, eventId,
job->errorString()));
+ emit newFileTransfer(eventId, localFilename);
} else
d->failedTransfer(eventId);
}