Return True if Message is outgoing.
(self)
| 349 | return self._msgstate == const.DC_STATE_IN_SEEN |
| 350 | |
| 351 | def is_outgoing(self): |
| 352 | """Return True if Message is outgoing.""" |
| 353 | return lib.dc_msg_get_state(self._dc_msg) in ( |
| 354 | const.DC_STATE_OUT_PENDING, |
| 355 | const.DC_STATE_OUT_FAILED, |
| 356 | const.DC_STATE_OUT_MDN_RCVD, |
| 357 | const.DC_STATE_OUT_DELIVERED, |
| 358 | ) |
| 359 | |
| 360 | def is_out_pending(self): |
| 361 | """Return True if Message is outgoing, but is pending (no single checkmark).""" |
no outgoing calls
no test coverage detected