sfeed

simple feed reader - forked from git.codemadness.org/sfeed
git clone git://src.gearsix.net/sfeed
Log | Files | Refs | Atom | README | LICENSE

commit 65df3f2e9a3961541ac33f1a147d373f814aedf9
parent db9a53d95dddb5b668be498d9274ba700ac3b529
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Mon, 12 Oct 2020 20:42:17 +0200

add a comment about the intended date priority

Diffstat:
Msfeed.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sfeed.c b/sfeed.c @@ -46,7 +46,7 @@ typedef struct string { enum TagId { TagUnknown = 0, /* RSS */ - RSSTagDcdate, RSSTagPubdate, + RSSTagDcdate, RSSTagPubdate, /* creation date has higher priority */ RSSTagTitle, RSSTagMediaDescription, RSSTagDescription, RSSTagContentEncoded, RSSTagGuid, @@ -58,7 +58,7 @@ enum TagId { RSSTagAuthor, RSSTagDccreator, RSSTagCategory, /* Atom */ - AtomTagUpdated, AtomTagPublished, + AtomTagUpdated, AtomTagPublished, /* creation date has higher priority */ AtomTagTitle, AtomTagMediaDescription, AtomTagSummary, AtomTagContent, AtomTagId,