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

Method quote

python/src/deltachat/message.py:243–250  ·  view source on GitHub ↗

Quote getter. :returns: Quoted message, if found in the database

(self)

Source from the content-addressed store, hash-verified

241
242 @property
243 def quote(self):
244 """Quote getter.
245
246 :returns: Quoted message, if found in the database
247 """
248 msg = lib.dc_msg_get_quoted_msg(self._dc_msg)
249 if msg:
250 return Message(self.account, ffi.gc(msg, lib.dc_msg_unref))
251
252 @quote.setter
253 def quote(self, quoted_message):

Callers

nothing calls this directly

Calls 1

MessageClass · 0.70

Tested by

no test coverage detected