diff options
author | Tobias Fella <fella@posteo.de> | 2022-03-08 00:06:36 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2022-05-16 20:47:17 +0200 |
commit | efa450920e5fc338e771e653ca0889e948d04ee7 (patch) | |
tree | 215efb53d0e06ed660a97593d56ffb4868dbc2e2 /lib/room.h | |
parent | 6f5ac9b7315d75692960e5eac7b1eb6867c0d203 (diff) | |
download | libquotient-efa450920e5fc338e771e653ca0889e948d04ee7.tar.gz libquotient-efa450920e5fc338e771e653ca0889e948d04ee7.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
@@ -999,7 +999,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 |