Skip to content

Commit

Permalink
Add "Playlist on ListenBrainz" suffix to opengraph title tag
Browse files Browse the repository at this point in the history
  • Loading branch information
MonkeyDo committed Jan 8, 2025
1 parent a03f635 commit 53b24df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion listenbrainz/webserver/views/playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def playlist_page(playlist_mbid: str):
playlist = db_playlist.get_by_mbid(db_conn, ts_conn, playlist_mbid, False)
if playlist is not None and playlist.is_visible_by(current_user_id):
og_meta_tags = {
"title": playlist.name,
"title": f'{playlist.name} — Playlist on ListenBrainz',
"description": playlist.description,
"type": "music:playlist",
"url": f'{current_app.config["SERVER_ROOT_URL"]}/playlist/{playlist_mbid}',
Expand Down

0 comments on commit 53b24df

Please sign in to comment.