Skip "owner" elements, these are not metadata keys
This commit is contained in:
parent
967ad910ed
commit
afc414e7e3
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue