From e64ce5bb4f06997f81d792c4fe4db6f902387f6c Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Mon, 10 Feb 2020 01:43:10 +0300 Subject: [PATCH] Reduce is_msgrmsg_rfc724_mid_in_list scope to pub(crate) --- src/dc_receive_imf.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dc_receive_imf.rs b/src/dc_receive_imf.rs index 00455ca90..90d7dc23e 100644 --- a/src/dc_receive_imf.rs +++ b/src/dc_receive_imf.rs @@ -1525,7 +1525,7 @@ fn is_reply_to_messenger_message(context: &Context, mime_parser: &MimeMessage) - false } -pub fn is_msgrmsg_rfc724_mid_in_list(context: &Context, mid_list: &str) -> bool { +pub(crate) fn is_msgrmsg_rfc724_mid_in_list(context: &Context, mid_list: &str) -> bool { if let Ok(ids) = mailparse::addrparse(mid_list) { for id in ids.iter() { if is_msgrmsg_rfc724_mid(context, id) {