From d9746c58026612bdc59f6d69734ebd8d977e1aa9 Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Sat, 21 Feb 2026 21:39:36 -0800 Subject: [PATCH] linter fix --- conversations/src/api.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conversations/src/api.rs b/conversations/src/api.rs index 84f8ff8..e3923c8 100644 --- a/conversations/src/api.rs +++ b/conversations/src/api.rs @@ -136,7 +136,7 @@ pub fn create_new_private_convo( /// The ListConvoResult must be freed. #[ffi_export] pub fn list_conversations(ctx: &mut ContextHandle) -> ListConvoResult { - return match ctx.0.list_conversations() { + match ctx.0.list_conversations() { Ok(ids) => { let ffi_ids: Vec = ids.into_iter().map(|id| id.to_string().into()).collect(); @@ -149,7 +149,7 @@ pub fn list_conversations(ctx: &mut ContextHandle) -> ListConvoResult { error_code: ErrorCode::UnknownError as i32, convo_ids: repr_c::Vec::EMPTY, }, - }; + } } /// Sends content to an existing conversation