diff --git a/src/modes/server/api/item.rs b/src/modes/server/api/item.rs index 5831579..f19ae24 100644 --- a/src/modes/server/api/item.rs +++ b/src/modes/server/api/item.rs @@ -144,14 +144,6 @@ async fn handle_as_meta_response_with_metadata( // If text metadata isn't set, we need to check the content using streaming approach match item_service.get_item_content_info_streaming( item_id, - None, - None, - None, - None, - None, - None, - None, - None, None ).await { Ok((_, _, is_binary)) => is_binary, @@ -466,14 +458,6 @@ async fn stream_item_content_response_with_metadata( // If text metadata isn't set, we need to check the content using streaming approach match item_service.get_item_content_info_streaming( item_id, - None, - None, - None, - None, - None, - None, - None, - None, None ).await { Ok((_, _, is_binary)) => is_binary,