Skip to content

Commit 3ae6733

Browse files
authored
AgendaEventRow: escape location description text (#913)
1 parent 49753d1 commit 3ae6733

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Widgets/AgendaEventRow.vala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public class Maya.View.AgendaEventRow : Gtk.ListBoxRow {
332332
string location_description, location_uri;
333333
if (location_from_component (event, out location_description, out location_uri)) {
334334
if (location_uri != "") {
335-
location_label.label = "<a href=\"%s\">%s</a>".printf (location_uri, location_description);
335+
location_label.label = "<a href=\"%s\">%s</a>".printf (location_uri, Markup.escape_text (location_description));
336336
} else {
337337
location_label.label = location_description;
338338
}

0 commit comments

Comments
 (0)