summaryrefslogtreecommitdiff
path: root/sfeed.c
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2016-03-21 20:24:20 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2016-03-21 20:24:20 +0100
commit25ce22039b43bbb6cafc329c5ad40d8638334e86 (patch)
tree847e809354995ebbc4d62bb155d200ffea0013c4 /sfeed.c
parent3b1217f6dc518016dff7c5270fd56dd85794d4f1 (diff)
check for tagid == TagUnknown, bit more clear
Diffstat (limited to 'sfeed.c')
-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;
}