diff options
-rw-r--r-- | context.cpp | 6 | ||||
-rw-r--r-- | context.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/context.cpp b/context.cpp index 0951241..b768fb6 100644 --- a/context.cpp +++ b/context.cpp @@ -136,3 +136,9 @@ Context::sendTextMessage(uint32_t chatId, QString textToSend) QByteArray utf8Text = textToSend.toUtf8(); return dc_send_text_msg(m_context, chatId, utf8Text.constData()); } + +bool +Context::setChatMuteDuration(uint32_t chatId, int64_t duration) +{ + return dc_set_chat_mute_duration(m_context, chatId, duration); +} @@ -34,6 +34,7 @@ public: QString getBlobdir(); Q_INVOKABLE bool setConfig(QString key, QString value); Q_INVOKABLE QString getConfig(QString key); + Q_INVOKABLE bool setChatMuteDuration(uint32_t chatId, int64_t duration); Q_INVOKABLE QString getMessageInfo(uint32_t msgId); private: |