aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBradley Taunt <bt@btxx.org>2024-07-24 10:22:01 -0400
committerBradley Taunt <bt@btxx.org>2024-07-24 10:22:01 -0400
commitc0404efaa880c3cd545c65ce7a05cb2562ce4103 (patch)
treed8cf06bfe13148188a72a817014ff63ae096c7ae
parent07aa8a0e7e259e6df438c3643dc18f0d6e0fa0c2 (diff)
Force RSS time to set itself to midday, put original post date back
-rw-r--r--posts/futurama.md2
-rw-r--r--wruby.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/posts/futurama.md b/posts/futurama.md
index 71c7596..c858664 100644
--- a/posts/futurama.md
+++ b/posts/futurama.md
@@ -1,6 +1,6 @@
# Exploring Futurama: A Dive into the World of Tomorrow
-2024-07-21
+2024-07-22
## Introduction
diff --git a/wruby.rb b/wruby.rb
index b17bca2..d4f49e6 100644
--- a/wruby.rb
+++ b/wruby.rb
@@ -112,7 +112,7 @@ def generate_rss(posts, rss_file, author_name, site_name, site_url, posts_dir)
maker.channel.link = site_url
posts.each do |post|
- date = Date.parse(post[:date].to_s).to_time
+ date = Date.parse(post[:date].to_s).to_time + 12*60*60 # Force time to midday
item_link = "#{site_url}/#{posts_dir}/#{post[:link]}"
item_title = post[:title]
item_content = post[:content]