From 24a267da50da2b517145ad7275c4e76081c7da2d Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Thu, 27 Mar 2025 11:11:28 -0600 Subject: [PATCH] forgot some urls --- src/routes/activityspoof.nim | 2 +- src/views/about.nim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/activityspoof.nim b/src/routes/activityspoof.nim index 863dfef..eea061a 100644 --- a/src/routes/activityspoof.nim +++ b/src/routes/activityspoof.nim @@ -214,7 +214,7 @@ proc createActivityPubRouter*(cfg: Config) = nodeinfo["version"] = %"2.1" nodeinfo["software"] = %*{ "name": "Nitter", - "repository": "https://gitdab.com/Cynosphere/nitter" + "repository": "https://gitlab.com/Cynosphere/nitter" } var metadata = newJObject() diff --git a/src/views/about.nim b/src/views/about.nim index 891a610..4eb3a71 100644 --- a/src/views/about.nim +++ b/src/views/about.nim @@ -5,7 +5,7 @@ import karax/[karaxdsl, vdom] const date = staticExec("git show -s --format=\"%cd\" --date=format:\"%Y.%m.%d\"") hash = staticExec("git show -s --format=\"%h\"") - link = "https://gitdab.com/Cynosphere/nitter/commit/" & hash + link = "https://gitlab.com/Cynosphere/nitter/commit/" & hash version = &"{date}-{hash}" var aboutHtml: string