From afc414e7e33caa36fffe88de762c46d51dd096f7 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sat, 18 Jul 2009 16:24:56 +0200 Subject: [PATCH] Skip "owner" elements, these are not metadata keys --- midori/midori-array.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/midori/midori-array.c b/midori/midori-array.c index 79a82f75..de61c95a 100644 --- a/midori/midori-array.c +++ b/midori/midori-array.c @@ -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) {