MCPcopy Create free account
hub / github.com/chatmail/core / unmute

Method unmute

python/src/deltachat/chat.py:184–191  ·  view source on GitHub ↗

unmutes the chat. :returns: None

(self)

Source from the content-addressed store, hash-verified

182 raise ValueError("Call to dc_set_chat_mute_duration failed")
183
184 def unmute(self) -> None:
185 """unmutes the chat.
186
187 :returns: None
188 """
189 ret = lib.dc_set_chat_mute_duration(self.account._dc_context, self.id, 0)
190 if not bool(ret):
191 raise ValueError("Failed to unmute chat")
192
193 def pin(self) -> None:
194 """Pin the chat."""

Callers 1

test_muteMethod · 0.45

Calls

no outgoing calls

Tested by 1

test_muteMethod · 0.36