Skip to content

Commit 6abadac

Browse files
authored
api: add MessageSearchResult.chat_id (#6120)
1 parent 55702e4 commit 6abadac

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

deltachat-jsonrpc/src/api/types/message.rs

+2
Original file line numberDiff line numberDiff line change
@@ -490,6 +490,7 @@ pub struct MessageSearchResult {
490490
author_name: String,
491491
author_color: String,
492492
author_id: u32,
493+
chat_id: u32,
493494
chat_profile_image: Option<String>,
494495
chat_color: String,
495496
chat_name: String,
@@ -529,6 +530,7 @@ impl MessageSearchResult {
529530
author_name,
530531
author_color: color_int_to_hex_string(sender.get_color()),
531532
author_id: sender.id.to_u32(),
533+
chat_id: chat.id.to_u32(),
532534
chat_name: chat.get_name().to_owned(),
533535
chat_color,
534536
chat_type: chat.get_type().to_u32().context("unknown chat type id")?,

0 commit comments

Comments
 (0)