diff options
author | link2xt <link2xt@testrun.org> | 2021-02-22 01:48:27 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2021-02-22 01:48:27 +0300 |
commit | 8f669a6a45cff24e874d8249bc77faed34a2c734 (patch) | |
tree | 4ca9903df4056e0cdf957d619ac472251e3e1ddd /context.cpp | |
parent | 429338fba9a3102bc91966f2df4f95dcdaa32fe1 (diff) | |
download | kdeltachat-8f669a6a45cff24e874d8249bc77faed34a2c734.tar.gz kdeltachat-8f669a6a45cff24e874d8249bc77faed34a2c734.zip |
Add Context::setChatMuteDuration
Diffstat (limited to 'context.cpp')
-rw-r--r-- | context.cpp | 6 |
1 files changed, 6 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); +} |