summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Hughes <richard@hughsie.com>2020-01-06 11:04:56 +0000
committerRichard Hughes <richard@hughsie.com>2020-01-06 11:04:58 +0000
commit953c8e529d7291e60a95e580967ed79ce2c9ccf0 (patch)
treeaae1166d59f68f403f801bae802836707e95c0d5
parent3148e3e73c312e624db7d7dc15a01ebd87af5d03 (diff)
downloadappstream-glib-953c8e529d7291e60a95e580967ed79ce2c9ccf0.tar.gz
trivial: Fix CI by moving 'future' back a bit
2020 seemed like such a long time in the future all those years ago...
-rw-r--r--data/tests/broken.appdata.xml2
-rw-r--r--libappstream-glib/as-app-validate.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/data/tests/broken.appdata.xml b/data/tests/broken.appdata.xml
index f7a5386..cf80f5b 100644
--- a/data/tests/broken.appdata.xml
+++ b/data/tests/broken.appdata.xml
@@ -40,7 +40,7 @@
<p>This is a duplicate release on the same day!</p>
</description>
</release>
- <release date="2020-01-01" version="0.6.2">
+ <release date="2050-01-01" version="0.6.2">
<description>
<p>This is a release in the future!</p>
</description>
diff --git a/libappstream-glib/as-app-validate.c b/libappstream-glib/as-app-validate.c
index c1103ac..f50e4e4 100644
--- a/libappstream-glib/as-app-validate.c
+++ b/libappstream-glib/as-app-validate.c
@@ -864,7 +864,7 @@ as_app_validate_release (AsApp *app,
AS_PROBLEM_KIND_ATTRIBUTE_MISSING,
"<release> has no timestamp");
}
- if (timestamp > 20120101 && timestamp < 20251231) {
+ if (timestamp > 20120101 && timestamp < 20351231) {
ai_app_validate_add (helper,
AS_PROBLEM_KIND_ATTRIBUTE_INVALID,
"<release> timestamp should be a UNIX time");