aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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]