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() }