We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
MessageObject.is_edited
1 parent 85cbfde commit 253331bCopy full SHA for 253331b
deltachat-jsonrpc/src/api/types/message.rs
@@ -39,6 +39,8 @@ pub struct MessageObject {
39
40
text: String,
41
42
+ is_edited: bool,
43
+
44
/// Check if a message has a POI location bound to it.
45
/// These locations are also returned by `get_locations` method.
46
/// The UI may decide to display a special icon beside such messages.
@@ -204,6 +206,7 @@ impl MessageObject {
204
206
quote,
205
207
parent_id,
208
text: message.get_text(),
209
+ is_edited: message.is_edited(),
210
has_location: message.has_location(),
211
has_html: message.has_html(),
212
view_type: message.get_viewtype().into(),
0 commit comments