Clear up warning from new Rust version

This commit is contained in:
jude
2023-06-20 15:33:25 +01:00
parent e025d945cf
commit fa542bb24f
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ impl Embed {
embed.description = substitute(&embed.description);
embed.footer = substitute(&embed.footer);
embed.fields.iter_mut().for_each(|mut field| {
embed.fields.iter_mut().for_each(|field| {
field.title = substitute(&field.title);
field.value = substitute(&field.value);
});