From ba2745138ab28e699d168fe7bc0127244b600574 Mon Sep 17 00:00:00 2001 From: Maple Nebel Date: Wed, 17 Jun 2026 21:18:27 +0200 Subject: [PATCH] fix not building --- rnex-core/src/nex/datastore.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/rnex-core/src/nex/datastore.rs b/rnex-core/src/nex/datastore.rs index a4a4e69..f0bfd1e 100644 --- a/rnex-core/src/nex/datastore.rs +++ b/rnex-core/src/nex/datastore.rs @@ -506,7 +506,7 @@ fn get_blacklist_1() -> Vec { "PLEASE star", "Bitte Sterne", ] - .into_iter() + .iter() .map(String::from) .collect() } @@ -521,7 +521,7 @@ fn get_blacklist_2() -> Vec { "東日本", "大震", ] - .into_iter() + .iter() .map(String::from) .collect() } @@ -590,7 +590,7 @@ fn get_blacklist_3() -> Vec { "ま/んこ", "まん/こ", ] - .into_iter() + .iter() .map(String::from) .collect() } @@ -845,6 +845,7 @@ impl DataStore for User { &self, custom_ranking_param: DataStoreGetCustomRankingByDataIDParam, ) -> Result<(Vec, Vec), ErrorCode> { + // use log instead println!("appid: {:?}", custom_ranking_param.application_id); println!("dataid list: {:?}", custom_ranking_param.data_id_list); println!("result option: {:?}", custom_ranking_param.result_option);