summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2014-08-29 14:34:30 +0100
committerRichard Hughes <richard@hughsie.com>2014-08-29 15:51:25 +0100
commit714af07542ffcad8500c63e4c71c196f36bdb93f (patch)
tree3fc78c30971e01aaa024bb0d32303740183149d5
parentd9a254d80637493ca9722514c0c7b51fe57861dd (diff)
downloadappstream-glib-714af07542ffcad8500c63e4c71c196f36bdb93f.tar.gz
trivial: Relax the <li> length requirement some more
-rw-r--r--libappstream-glib/as-app-validate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libappstream-glib/as-app-validate.c b/libappstream-glib/as-app-validate.c
index 7e307ec..dc96478 100644
--- a/libappstream-glib/as-app-validate.c
+++ b/libappstream-glib/as-app-validate.c
@@ -180,7 +180,7 @@ as_app_validate_description_li (const gchar *text, AsAppValidateHelper *helper)
/* relax the requirements a bit */
if ((helper->flags & AS_APP_VALIDATE_FLAG_RELAX) > 0) {
length_li_max = 1000;
- length_li_min = 4;
+ length_li_min = 3;
require_sentence_case = FALSE;
}