Skip "owner" elements, these are not metadata keys

This commit is contained in:
Christian Dywan 2009-07-18 16:24:56 +02:00
parent 967ad910ed
commit afc414e7e3

View file

@ -135,6 +135,11 @@ katze_xbel_parse_info (KatzeItem* item,
xmlAttrPtr properties = cur->properties;
while (properties)
{
if (!xmlStrcmp (properties->name, (xmlChar*)"owner"))
{
properties = properties->next;
continue;
}
xmlChar* value = xmlGetProp (cur, properties->name);
if (properties->ns && properties->ns->prefix)
{