@@ -158,7 +158,7 @@ async fn insert_tombstone(context: &Context, rfc724_mid: &str) -> Result<MsgId>
158
158
/// If `is_partial_download` is set, it contains the full message size in bytes.
159
159
/// Do not confuse that with `replace_msg_id` that will be set when the full message is loaded
160
160
/// later.
161
- #[ expect ( clippy:: too_many_arguments) ]
161
+ #[ allow ( clippy:: too_many_arguments) ]
162
162
pub ( crate ) async fn receive_imf_inner (
163
163
context : & Context ,
164
164
folder : & str ,
@@ -679,7 +679,7 @@ pub async fn from_field_to_contact_id(
679
679
/// Creates a `ReceivedMsg` from given parts which might consist of
680
680
/// multiple messages (if there are multiple attachments).
681
681
/// Every entry in `mime_parser.parts` produces a new row in the `msgs` table.
682
- #[ expect ( clippy:: too_many_arguments) ]
682
+ #[ allow ( clippy:: too_many_arguments, clippy :: cognitive_complexity ) ]
683
683
async fn add_parts (
684
684
context : & Context ,
685
685
mime_parser : & mut MimeMessage ,
@@ -1834,7 +1834,7 @@ async fn lookup_chat_by_reply(
1834
1834
Ok ( Some ( ( parent_chat. id , parent_chat. blocked ) ) )
1835
1835
}
1836
1836
1837
- #[ expect ( clippy:: too_many_arguments) ]
1837
+ #[ allow ( clippy:: too_many_arguments) ]
1838
1838
async fn lookup_chat_or_create_adhoc_group (
1839
1839
context : & Context ,
1840
1840
mime_parser : & MimeMessage ,
@@ -1969,7 +1969,7 @@ async fn is_probably_private_reply(
1969
1969
/// than two members, a new ad hoc group is created.
1970
1970
///
1971
1971
/// On success the function returns the created (chat_id, chat_blocked) tuple.
1972
- #[ expect ( clippy:: too_many_arguments) ]
1972
+ #[ allow ( clippy:: too_many_arguments) ]
1973
1973
async fn create_group (
1974
1974
context : & Context ,
1975
1975
mime_parser : & mut MimeMessage ,
@@ -2089,6 +2089,7 @@ async fn create_group(
2089
2089
/// just omitted.
2090
2090
///
2091
2091
/// * `is_partial_download` - whether the message is not fully downloaded.
2092
+ #[ allow( clippy:: too_many_arguments) ]
2092
2093
async fn apply_group_changes (
2093
2094
context : & Context ,
2094
2095
mime_parser : & mut MimeMessage ,
0 commit comments