aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-04-02 03:38:44 +0100
committerLibravatar cel 🌸 <cel@bunny.garden>2025-04-02 03:38:44 +0100
commit13949ed0d4006421934a9e2e6f91b3ec21222e25 (patch)
tree496636d2321b64d920c7d72c72e0d02170489154 /src/main.rs
parentbb00d178d77ee6ca604cd4c6ed2c4e3ba81aab64 (diff)
downloadblossom-13949ed0d4006421934a9e2e6f91b3ec21222e25.tar.gz
blossom-13949ed0d4006421934a9e2e6f91b3ec21222e25.tar.bz2
blossom-13949ed0d4006421934a9e2e6f91b3ec21222e25.zip
fix feed urls
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs
index ebc480e..7253a16 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -139,8 +139,8 @@ async fn feed() -> Result<Response> {
// TODO: i18n
let context = atom::Context {
page_title: "celeste's hard drive".to_owned(),
- page_url: "https://en.blos.sm".to_owned(),
- self_url: "https://en.blos.sm/feed".to_owned(),
+ page_url: "https://blos.sm".to_owned(),
+ self_url: "https://blos.sm/feed".to_owned(),
lang: "en".to_owned(),
};
let feed = atom::atom(context, posts).await;