aboutsummaryrefslogtreecommitdiff
path: root/lib/room.h
diff options
context:
space:
mode:
authorTobias Fella <fella@posteo.de>2022-03-08 00:06:36 +0100
committerTobias Fella <fella@posteo.de>2022-03-10 20:03:35 +0100
commit2071f5020975bc3f5ecbb9e2444acaad8f13060a (patch)
treecf362b9c9c13c1172503c602c673a6a24b3d43c5 /lib/room.h
parent0ef080bdfa3a8a64d1faadf4a11a8b9dbb5bc055 (diff)
downloadlibquotient-2071f5020975bc3f5ecbb9e2444acaad8f13060a.tar.gz
libquotient-2071f5020975bc3f5ecbb9e2444acaad8f13060a.zip
Implement sending encrypted files
Diffstat (limited to 'lib/room.h')
-rw-r--r--lib/room.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/room.h b/lib/room.h
index 9f70d77a..1a1d839f 100644
--- a/lib/room.h
+++ b/lib/room.h
@@ -997,7 +997,7 @@ Q_SIGNALS:
void newFileTransfer(QString id, QUrl localFile);
void fileTransferProgress(QString id, qint64 progress, qint64 total);
- void fileTransferCompleted(QString id, QUrl localFile, QUrl mxcUrl);
+ void fileTransferCompleted(QString id, QUrl localFile, QUrl mxcUrl, Omittable<EncryptedFile> encryptedFile = std::nullopt);
void fileTransferFailed(QString id, QString errorMessage = {});
// fileTransferCancelled() is no more here; use fileTransferFailed() and
// check the transfer status instead