We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MessageSearchResult.chat_id
1 parent 55702e4 commit 6abadacCopy full SHA for 6abadac
deltachat-jsonrpc/src/api/types/message.rs
@@ -490,6 +490,7 @@ pub struct MessageSearchResult {
490
author_name: String,
491
author_color: String,
492
author_id: u32,
493
+ chat_id: u32,
494
chat_profile_image: Option<String>,
495
chat_color: String,
496
chat_name: String,
@@ -529,6 +530,7 @@ impl MessageSearchResult {
529
530
author_name,
531
author_color: color_int_to_hex_string(sender.get_color()),
532
author_id: sender.id.to_u32(),
533
+ chat_id: chat.id.to_u32(),
534
chat_name: chat.get_name().to_owned(),
535
chat_color,
536
chat_type: chat.get_type().to_u32().context("unknown chat type id")?,
0 commit comments