summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-06-10 16:20:48 +0100
committerRichard Hughes <richard@hughsie.com>2014-06-10 16:20:48 +0100
commit9fbaa4240933dbbf53e34ae517a2021256a92efe (patch)
treea4575ac6ee35ea41809669a893b6784611bd7736
parent1f6f146c3415c835cab1d2ad13b7341ce8d38092 (diff)
downloadappstream-glib-9fbaa4240933dbbf53e34ae517a2021256a92efe.tar.gz
trivial: Also unintltoolize <_ul> and <_ol>
-rw-r--r--libappstream-glib/as-app.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libappstream-glib/as-app.c b/libappstream-glib/as-app.c
index 0510b98..7607558 100644
--- a/libappstream-glib/as-app.c
+++ b/libappstream-glib/as-app.c
@@ -2654,6 +2654,10 @@ as_app_parse_appdata_unintltoolize_cb (GNode *node, gpointer data)
as_node_set_name (node, "p");
else if (g_strcmp0 (name, "_li") == 0)
as_node_set_name (node, "li");
+ else if (g_strcmp0 (name, "_ul") == 0)
+ as_node_set_name (node, "ul");
+ else if (g_strcmp0 (name, "_ol") == 0)
+ as_node_set_name (node, "ol");
return FALSE;
}