fix typo: mbz is the correct string

This commit is contained in:
Volker
2025-12-27 17:09:31 +01:00
parent c97d22e0f0
commit 6efa6617d3
11 changed files with 8 additions and 8 deletions
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<opml version="2.0">
<head>
<title>MusicBrainz Artist Feeds</title>
</head>
<body>
<outline text="MusicBrainz Artist Feeds" title="MusicBrainz Artist Feeds">
{% for feed in feeds %}
<outline type="rss" text="{{ (feed.artists | map(attribute='name') | sort | join(', ')) }}" title="{{ feed.name }} ({{ feed.artists | length }} artists)" xmlUrl="{{ url_for('get_feed_rss', feed_id=feed.id, _external=True) }}"/>
{% endfor %}
</outline>
</body>
</opml>