diff options
author | Tobias Fella <fella@posteo.de> | 2022-03-08 00:06:36 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2022-03-10 20:03:35 +0100 |
commit | 2071f5020975bc3f5ecbb9e2444acaad8f13060a (patch) | |
tree | cf362b9c9c13c1172503c602c673a6a24b3d43c5 /lib/room.h | |
parent | 0ef080bdfa3a8a64d1faadf4a11a8b9dbb5bc055 (diff) | |
download | libquotient-2071f5020975bc3f5ecbb9e2444acaad8f13060a.tar.gz libquotient-2071f5020975bc3f5ecbb9e2444acaad8f13060a.zip |
Implement sending encrypted files
Diffstat (limited to 'lib/room.h')
-rw-r--r-- | lib/room.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |