Skip to content

Commit

Permalink
fix: don't escape list title in sidebar
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr committed Dec 24, 2024
1 parent ed9196f commit 7b915e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/Accounts/InstanceAccount.vala
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ public class Tuba.InstanceAccount : API.Account, Streamable {
if (list.id in settings.favorite_lists_ids) {
fav_lists += new Place () {
icon = "tuba-list-compact-symbolic",
title = GLib.Markup.escape_text (list.title),
title = list.title,
extra_data = list,
open_func = (win, list) => {
win.open_view (set_as_sidebar_item (new Views.List ((API.List) list)));
Expand Down

0 comments on commit 7b915e0

Please sign in to comment.