From 73b8446a7d224735ac2ead4f762ef4a8eb74852d Mon Sep 17 00:00:00 2001 From: Maple Nebel Date: Wed, 17 Jun 2026 21:20:00 +0200 Subject: [PATCH] fix not building --- rnex-core/src/nex/datastore.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rnex-core/src/nex/datastore.rs b/rnex-core/src/nex/datastore.rs index f0bfd1e..8554298 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", ] - .iter() + .into_iter() .map(String::from) .collect() } @@ -521,7 +521,7 @@ fn get_blacklist_2() -> Vec { "東日本", "大震", ] - .iter() + .into_iter() .map(String::from) .collect() } @@ -590,7 +590,7 @@ fn get_blacklist_3() -> Vec { "ま/んこ", "まん/こ", ] - .iter() + .into_iter() .map(String::from) .collect() }