diff --git a/ChangeLog b/ChangeLog index b5f6347f4..2945b6832 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ To be released * Fixes Github #86: Support HTTP content negotiation (suggested by DanMan) + * Fixes Github #98: Stop calling Atom person constructs w/ URI invalid + (patch by Aristotle Pagaltzis) 2014-08-24 Lars Windolf diff --git a/src/parsers/atom10.c b/src/parsers/atom10.c index 02a68b6bb..9ad46802c 100644 --- a/src/parsers/atom10.c +++ b/src/parsers/atom10.c @@ -234,7 +234,7 @@ atom10_parse_person_construct (xmlNodePtr cur) } if (xmlStrEqual(cur->name, BAD_CAST"uri")) { - if (!uri) + if (uri) invalid = TRUE; g_free (uri); tmp = (gchar *)xmlNodeListGetString (cur->doc, cur->xmlChildrenNode, 1);