summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sfeed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfeed.c b/sfeed.c
index 421bab5..955b831 100644
--- a/sfeed.c
+++ b/sfeed.c
@@ -616,7 +616,7 @@ xml_handler_start_el(XMLParser *p, const char *name, size_t namelen)
/* map tag type to field: unknown or lesser priority is ignored,
when tags of the same type are repeated only the first is used. */
- if (tagid <= ctx.fields[fieldmap[ctx.tagid]].tagid) {
+ if (tagid == TagUnknown || tagid <= ctx.fields[fieldmap[tagid]].tagid) {
ctx.field = NULL;
return;
}