Fix string type

This commit is contained in:
Paul van Tilburg 2022-08-12 09:52:23 +02:00
parent 45cb7faed9
commit 01ca8165e1
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ async fn feed(
let itunes_ext = ITunesChannelExtensionBuilder::default()
.author(Some(user.name.clone()))
.categories(Vec::from([ITunesCategoryBuilder::default()
.text("Music")
.text(String::from("Music"))
.build()])) // FIXME: Don't hardcode the category!
.image(Some(user.pictures.large))
.explicit(Some(String::from("no")))