Merge pull request 'Add spaces to "Directory ... not found" errror' (#130) from 8dcc/gothub:dev into dev

Reviewed-on: https://codeberg.org/gothub/gothub/pulls/130
This commit is contained in:
Arya K
2023-08-10 17:48:56 +00:00
+1 -1
View File
@@ -40,7 +40,7 @@ func DirView(c *fiber.Ctx) error {
// I need a better way to do this
return c.Status(404).Render("error", fiber.Map{
"title": "Error",
"error": "Directory" + c.Params("+") + "not found",
"error": "Directory " + c.Params("+") + " not found",
})
}