From 2dd2e87165e85c3e0ce331cbb24e5d734697cc46 Mon Sep 17 00:00:00 2001 From: Daichi Kimura Date: Thu, 15 Jan 2015 19:20:21 +0900 Subject: [PATCH] Adjust Entry Updated --- source/feed.xml.builder | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/feed.xml.builder b/source/feed.xml.builder index 34d83ce3..1752f81f 100644 --- a/source/feed.xml.builder +++ b/source/feed.xml.builder @@ -14,7 +14,8 @@ xml.feed 'xmlns' => 'http://www.w3.org/2005/Atom' do xml.link 'rel' => 'alternate', 'href' => URI.join(data.site.url, article.url) xml.id URI.join(data.site.url, article.url) xml.published article.date.to_time.iso8601 - xml.updated File.mtime(article.source_file).iso8601 + # xml.updated File.mtime(article.source_file).iso8601 + xml.updated article.date.to_time.iso8601 xml.author { xml.name article.data.authors } # xml.summary article.summary, 'type' => 'html' xml.content article.body, 'type' => 'html'