diff options
Diffstat (limited to 'lib/csapi/typing.cpp')
-rw-r--r-- | lib/csapi/typing.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csapi/typing.cpp b/lib/csapi/typing.cpp index 898bc149..605e143a 100644 --- a/lib/csapi/typing.cpp +++ b/lib/csapi/typing.cpp @@ -12,7 +12,7 @@ using namespace QMatrixClient; static const auto basePath = QStringLiteral("/_matrix/client/r0"); -SetTypingJob::SetTypingJob(const QString& userId, const QString& roomId, bool typing, int timeout) +SetTypingJob::SetTypingJob(const QString& userId, const QString& roomId, bool typing, Omittable<int> timeout) : BaseJob(HttpVerb::Put, "SetTypingJob", basePath % "/rooms/" % roomId % "/typing/" % userId) { |