Don't use Markdown link formatting

This commit is contained in:
Paul van Tilburg 2022-05-23 22:20:02 +02:00
parent fc2f200ee5
commit 1ab89f87c4
Signed by: paul
GPG Key ID: C6DE073EDA9EEC4D
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ async fn feed(username: &str, config: &State<Config>) -> Option<RssFeed> {
url.set_path(&format!("{}/download", &url.path()[1..]));
url.query_pairs_mut().append_pair("backend", "mixcloud");
url.query_pairs_mut().append_pair("id", &cloudcast.key);
let description = format!("Taken from Mixcloud: <{}>", cloudcast.url);
let description = format!("Taken from Mixcloud: {}", cloudcast.url);
let keywords = cloudcast
.tags
.iter()