fix: resolve async read and send trait bounds issues

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-25 21:10:14 -03:00
parent 9f140923bc
commit 36a53c890c
3 changed files with 45 additions and 5 deletions

View File

@@ -31,7 +31,7 @@ pub fn mode_get(
}
}
let item_service = ItemService::new(data_path);
let item_service = ItemService::new(data_path.clone());
let item_with_meta = item_service.find_item(conn, ids, tags, &meta)
.map_err(|e| anyhow!("Unable to find matching item in database: {}", e))?;