summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sfeed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sfeed.c b/sfeed.c
index 3cb6712..7eab8ab 100644
--- 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,