aboutsummaryrefslogtreecommitdiff
path: root/content.go
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-07-17 19:40:23 +0000
committerFuwn <[email protected]>2021-07-17 19:40:23 +0000
commit6b7fd2b0f7d9f87bbfc319bd920066c62e1ead2d (patch)
tree507b685e10b3d48cd1f2fe6df07737e01df0dcf3 /content.go
parentfix(handler): tech blog route (diff)
downloadspace-6b7fd2b0f7d9f87bbfc319bd920066c62e1ead2d.tar.xz
space-6b7fd2b0f7d9f87bbfc319bd920066c62e1ead2d.zip
fix(content): file reading error message
Diffstat (limited to 'content.go')
-rw-r--r--content.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/content.go b/content.go
index 08d3a0d..8603c35 100644
--- a/content.go
+++ b/content.go
@@ -9,8 +9,7 @@ func GetContent(file string) string {
if err != nil {
return `# ERROR READING FILE
-I seem to be having some trouble reading the contents of the "` + file + `" file... Try refreshing the page and if the problem persists, contact Fuwn! (Contact information available at /contact)
-`
+I seem to be having some trouble reading the contents of the "` + file + `" file... Try refreshing the page and if the problem persists, contact Fuwn!`
}
return string(contents)