From be7c7e0584476f9bb46297954a0e3baa29772cc9 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Thu, 30 Dec 2021 03:29:45 +0400 Subject: [PATCH] A link to my tracks at stuff page was broken due to missing `files_site`. --- homepage/index.js | 3 ++- package.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/homepage/index.js b/homepage/index.js index b67316c..9f4f598 100644 --- a/homepage/index.js +++ b/homepage/index.js @@ -61,7 +61,8 @@ function setRoutes() { await ctx.render('stuff', { title: "/ Stuff", description: "Here I share my programs, scripts, articles, may be other stuff.", - git_site: util.getServiceByHost(ctx.request.host, "git") + git_site: util.getServiceByHost(ctx.request.host, "git"), + files_site: util.getServiceByHost(ctx.request.host, "files") }) }) .get('/mindflow', async ctx => { diff --git a/package.json b/package.json index dcd216b..43ba4d7 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "arav-dwelling", "description": "Arav's dwelling", - "version": "21.50.0", + "version": "21.52.0", "author": "Alexander \"Arav\" Andreev (https://arav.top)", "license": "GPLv3", "homepage": "https://git.arav.top/Arav/Dwelling",