summaryrefslogtreecommitdiff
path: root/libappstream-glib/as-node.c
diff options
context:
space:
mode:
Diffstat (limited to 'libappstream-glib/as-node.c')
-rw-r--r--libappstream-glib/as-node.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libappstream-glib/as-node.c b/libappstream-glib/as-node.c
index 6231367..0953ec2 100644
--- a/libappstream-glib/as-node.c
+++ b/libappstream-glib/as-node.c
@@ -506,6 +506,14 @@ as_node_reflow_text (const gchar *text, gssize text_len)
g_auto(GStrv) split = NULL;
g_autoptr(GString) tmp = NULL;
+ /* all on one line */
+ if (g_strstr_len (text, text_len, "\n") == NULL &&
+ !g_str_has_prefix (text, " ")) {
+ gsize len;
+ len = text_len >= 0 ? (gsize) text_len : strlen (text);
+ return as_ref_string_new_copy_with_length (text, len);
+ }
+
/* split the text into lines */
tmp = g_string_sized_new ((gsize) text_len + 1);
split = g_strsplit (text, "\n", -1);