diff options
author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-10-12 18:41:31 +0200 |
---|---|---|
committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2020-10-12 20:12:01 +0200 |
commit | a1516cb7869a0dd99ebaacf846ad4161f2b9b9a2 (patch) | |
tree | 734e887f9267042be5f574de385005e7822fdb7f | |
parent | e43b7a48b08a6bbcb4e730e80395b3257681b33e (diff) |
RSS: give Dublin Core <dc:date> higher priority over <pubDate>
This way dc:date could be the updated time of the item. For Atom there is
<published> and <updated> with the same logic.
-rw-r--r-- | sfeed.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ typedef struct string { enum TagId { TagUnknown = 0, /* RSS */ - RSSTagDcdate, RSSTagPubdate, + RSSTagPubdate, RSSTagDcdate, RSSTagTitle, RSSTagMediaDescription, RSSTagDescription, RSSTagContentEncoded, RSSTagGuid, |